![]() |
The configuration menu.xml file specifies the location of and properties for your new menu items.
The Report menu group with the menuItemMyCustomReport item added could look like this:
<?xml version="1.0" encoding="UTF-8"?>
<navigationmenu
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="menu.xsd">
<menu type="group" render="true" tag="menuGroupReports">
<item type="item" render="true" tag="menuItemStandardReports"
action="reports/standardReports.jsf?initializeBean=true">
</item>
<item type="item" render="true" tag="menuItemCustomReports"
action="reports/customReports.jsf?initializeBean=true">
</item>
<item type="item" render="true" tag="menuItemScheduledReports"
action="reports/scheduledReports.jsf?initializeBean=true">
</item>
<item type="item" render="true" tag="menuItemMyCustomReport"
action="http://my.site.com/custom/custom.report.page.html" newWindow="true">
</item>
</menu>
</navigationmenu>