Java Reference
In-Depth Information
5. <h:body>
6. <ui:composition>
7. <div class="header">
8. <h2>
9. <span style="margin-left: 15px; margin-top: 15px;" class="label">BOOK
10. <span style="color: white;">STORE</span>
11. </span>
12. </h2>
13. </div>
14. </ui:composition>
15. </h:body>
16. </html>
Line 6 : The ui:composition tag indicates to the Facelets system that the
enclosing children will be grafted into the UIComponent hierarchy where header.
xhtml is inserted in common.xhtml .
Listing 6-15 illustrates sideBar.xhtml .
Listing 6-15. sideBar.xhtml
1. <div class="leftbar">
2. <ul id="menu">
3. <li><div>
4. <a class="link1" href=""><span class="label"
5. style="margin-left: 15px;">Home</span>
6. </a>
7. </div></li>
8. <li><div>
9. <a class="link1" href="listOfBooks.xhtml"><span
10. style="margin-left: 15px;" class="label">All Books</span></a>
11. </div></li>
12. <li><div>
13. <span class="label" style="margin-left: 15px;">Categories</span>
14. </div>
15. <ul>
16. <li><a class="label" href=""><span class="label"
17. style="margin-left: 30px;"></span></a></li>
18. </ul></li>
19. <li><div>
20. <span class="label" style="margin-left: 15px;">Contact Us</span>
21. </div></li>
22. </ul>
23. </div>
Listing 6-15 is the same sidebar file used in Chapter 2.
Listing 6-16 illustrates the template client contents.xhtml .
 
Search WWH ::




Custom Search