A summary page is a page in XHTML file format that is used to display data in a tabular format based on multiple filter criteria.
Getting Started
Summary Page as an XHTML document consists of three the following main parts:
- DOCTYPE declaration
...
- html root element
...
language | xml |
---|
...
...
- xmlns
...
Code Block | ||||
---|---|---|---|---|
| ||||
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:p="http://primefaces.org/ui"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:pt="http://xmlns.jcp.org/jsf/passthrough"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:fn="http://java.sun.com/jsp/jstl/functions"
xmlns:c="http://java.sun.com/jsp/jstl/core"
xmlns:crm="http://java.sun.com/jsf/composite/crm"> |
Template
Summary page uses the crm custom template template.xhtml.
Code Block | ||
---|---|---|
| ||
<ui:composition template="/template.xhtml"/> |
- declarations
- template.
The template that is used in summary page is the crm custom template template.xhtml. By default the template provides the base interface layout of the page as well as the following tags:
- "managedBean" parameter - contains the name of the managed bean that will be used from template
...