Skip to end of banner
Go to start of banner

Customise Summary Pages

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 24 Next »

This section describes how custom summary pages are be created.

 

What does this section cover?

Create Custom Summary Pages

For an introduction to summary pages, go to Summary Pages.

To create a new custom summary page, you need to create a single XML file under <custom_project>/web/WebContent/pages/summary/<module_name>

If the new summary page will be used to override system's release functionality, must follow this naming convention: <page_filename>Custom.xml. If not, it just has to have a unique file path.

In the following example, a new summary filter and field needs to be added to the existing contact information summary page. To do this, you have to copy release summary page contactInformation.xml in your custom projects directory under <custom_project>/web/WebContent/pages/summary/contactInfo, rename it to  contactInformationCustom.xml and add the new summary filter and field.

 

 Custom Summary Page Example
contactInformationCustom.xml
<summary>
	...
	<fieldlist>
		...
		<field>
			<fieldname>CONTACTINFORMATION.CIUSERFIELD2</fieldname>
			<caption>key_home_type</caption>
			<summary>true</summary>
			<filter>true</filter>
		</field>
		...
	</fieldlist>
	...
</summary	
	

 

For a full list of summary page attributes, go to Summary Pages Documentation.

  • No labels