This tag is like composition tag. Difference between those is that the content outside of the decorate tag is rendered while it is reverse for composition tag i.e. it is not rendered when we use composition tag. This tag is useful when we want content with some decoration text in the document.
decorate.xhtml:
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html"> RoseIndia Facelet Tags TutorialWelcome to the Facelet world..........
This is the content below decorate tag. |
decoratetemplate.xhtml :
xmlns:ui="http://java.sun.com/jsf/facelets"> |
Rendered Output :
Html Source Code :
RoseIndia Facelet Tags TutorialWelcome to the Facelet world..........
This is the content below decorate tag. |
This tag contains one attribute :
template : This is used to specify the name of the template where the content of decorate tag will be used .
0 comments:
Post a Comment