Hello, I'm new to JSF & Facelets...I was playing around with the idea of
using Facelets to modularize my pages. It seemed to go well until I needed
to embed a <ui:define...> block in an <h:form> block. It doesn't break, but
it doesn't show the contents of the ui:define either.
<h:form>
<ui:define name="pageSegment1">...</ui:define>
<ui:define name="pageSegment2">....</ui:define>
</h:form>
the contents of pageSegment1 & pageSegment2 don't show on the screen.
If I do:
<ui:define name="pageSegment1"><h:form>...</h:form></ui:define>
<ui:define name="pageSegment2"><h:form>....</h:form></ui:define>
then it works.
Is there a way around this? has anyone else experienced this?
Thanks