January 2013
Intermediate to advanced
328 pages
7h 14m
English
When working with the Layout component, we should be aware of pitfalls with menus and dialogs inside layout units. Beginners often face overlap issues and try to find several workarounds. In fact, there are easy solutions available.
In this recipe, we will show how to overcome these issues. We will integrate p:menubar and p:dialog into layout units.
Assume we have a
full page layout with two layout units, center and north. The north unit contains a Menubar component with quite normal options.
<p:layout fullPage="true"> <p:layoutUnit position="center"> Center </p:layoutUnit> <p:layoutUnit position="north" size="80" resizable="false"> <h:form> <p:menubar> <p:submenu label="JavaScript Libraries"> ...
Read now
Unlock full access