I'm migrating webapp from struts1 to struts2. On one of the screens the app uses an iframe. The frame file is not recognizing any struts2 tags. The taglib directive is present on all jsp files used for this iframe setup. I have no problems referencing the struts2 tags in other areas of the app.
Has anyone come across this issue? Here's a snippet of the code <%@ taglib prefix="s" uri="/struts-tags" %> ... <s:form method="post" style="height:0px;" id="subfundform"> <s:if test="%{subFunds.isEmpty() != true}"> <div class="subfundDD" style="margin:0px;height:15px;padding-left:20px; float:left;"> TEST <s:select name="subFund" list="subFunds" headerKey="0" headerValue="Full" listKey="subFund" listValue="subFundDesc" onchange="document.getElementById('subfundform').submit();" /> <input type="hidden" name="treeType" value="<%=treeType%>"/> </div> </s:if> </s:form> There are getters and setters for items referenced. Regards Denise