Hi,
When i use jsp include action tag in the tabstrip, the jsp file is dispayed above the tabstrip. Tabstrip is not
including this external jsp in the tabstripitemBody.
Please refer the following code . Any solution to this?
Thanks & Regards
Markandeya
<%@ taglib uri="tagLib" prefix="hbj" %>
<hbj:content id="footerPageContext" >
<hbj:page title="Edit Claim">
<hbj:form id="footerFormId" >
<hbj:tabStrip id="modulesTS"
horizontalAlignment="LEFT"
verticalAlignment="TOP"
selection="1"
>
<hbj:tabStripItem
id="aa"
index="1"
>
<hbj:tabStripItemBody>
<table border="1">
<tr><td>
Row1
<td></tr>
<tr><td>
<jsp:include page="incTest.jsp" flush="true" />
<td></tr>
</table>
</hbj:tabStripItemBody>
</hbj:tabStripItem>
</hbj:tabStrip>
</hbj:form>
</hbj:page>
</hbj:content>
Add a comment