|
The UI Insert tag is a templating tag that declares a named content element
to be defined by another Facelet. It can be used effectively with the ui:define tag to pass values
between Facelets.
Facelets Template (template.xhtml)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:ui="http://java.sun.com/jsf/facelets">
<h:head>
<title><ui:insert name="title" /></title>
</h:head>
<body>
<h2><ui:insert name="header" /></h2>
<ui:insert name="message" />
</body>
</html>
This example was formatted by JSFToolbox for Dreamweaver.
Facelets Template Client (client.xhtml)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets">
<h:head />
<body>
<ui:composition template="template.xhtml">
<ui:define name="title">Welcome</ui:define>
<ui:define name="header">Hello World</ui:define>
<ui:define name="message">How are you today?</ui:define>
</ui:composition>
</body>
</html>
This example was formatted by JSFToolbox for Dreamweaver.
HTML Output
<html>
<head>
<title>Welcome</title>
</head>
<body>
<h2>Hello World!</h2>
How are you today?
</body>
</html>
|