Hi,
Is it possible to include a jsp page in webdiaglog? I intend to use the webdialog as a popup which contains several controls including webgrid.
The idea is to have seperate jsp files, one for showing main content and another for showing the popup, so that its easier to maintain.
This code does not show contents of included jsp page:
-------------------------------------------------------------------------------------------
<ig:dialogWindow id="igDw001" modal="true" windowState="hidden" style="width:500px;height:450px" binding="#{webdw_bb.dw}"> <ig:dwHeader captionText="Confirmation Dialog"/> <ig:dwContentPane>
<f:subview id="next"> <jsp:include page="/utp8/KWResult1.jsp" /> </f:subview>
</ig:dwContentPane> </ig:dialogWindow>
regards
Hello,
Try using the following:
<ig:dwContentPane contentUrl="/utp8/KWResult1.jsp" />