May 2015
Beginner to intermediate
412 pages
8h 44m
English
When working with the layout component, we should be aware of the pitfalls of 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.
Let's assume that 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