I have a JSP code that is used in several forms, and i'm trying to include it inside of a JSP page.
It works fine with static JSP, but i did not succeed with dynamic JSP.
The code i'm trying to include is something like that:
<ui:panelLayout id="panelMem" panelLayout="flow" >
<p>TestMem</p>
<ui:label id="labelTest" style="left: 24px; top: 0px; position: absolute" text="TEST"/>
</ui:panelLayout>
And i tried jsp:include and jsp:directive:include, but it doesn't work.
Finally, the tags of my application are:
<jsp:root version="1.2" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:ui="http://www.sun.com/web/ui">
Unfortunately, i can't change the application. Is there a way to do that?
Thanks.
TestMem
" is rendered. The label "labelTest" is not rendered. If i try: