ui:remove |
|
The UI Remove tag is used to specify tags or blocks of content that should
be removed from your page by the Facelets view handler at compile time. This tag
has no attributes. You can use this tag within the "jsfc" attribute to indicate
that a particular tag should be removed from the rendered page.
Note that
the Facelets compilation process is much faster than the JSP compilation process
because no Java bytecode is actually generated and compiled behind the scenes
when you first visit your page. The UI Remove tag is used to specify tags or
blocks of content that should be removed from your page by the Facelets view
handler at compile time. This tag has no attributes.
You can use this tag
within the "jsfc" attribute to indicate ui:remove tag in
Dreamweaver's design view, but it will display markup containing the "jsfc"
variant of this tag.
JSF Example
<!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 />
<body>
<h:form>
This text will be displayed.
<ui:remove>
This text will be removed.
</ui:remove>
This text will be displayed.
</h:form>
</body>
</html>
This example was formatted by JSFToolbox for Dreamweaver.
HTML Output
This text will be displayed. This text will be displayed.
|