Appboard/2.4/builder/help menu configuration: Difference between revisions
imported>Jason.nicholls No edit summary |
imported>Jason.nicholls No edit summary |
||
Line 7: | Line 7: | ||
<?xml version="1.0" encoding="UTF-8"?> | <?xml version="1.0" encoding="UTF-8"?> | ||
<configuration> | <configuration> | ||
<obj className="appboard.actions" id="viewerActions"> | |||
<association name="actions"> | |||
<obj className="appboard.actions.Action" label="Change Password" href="/enportal/servlet/pd/vdir/system/user/password/Change Password" /> | |||
<obj className="appboard.actions.Action" label="Help" href="http://edgedoc.edge-technologies.com/index.php/Main_Page" /> | |||
<obj className="appboard.actions.Action" label="About" href="/enportal/framework/Help/appboard_about.jsp" /> | |||
</association> | |||
</obj> | |||
</configuration> | </configuration> | ||
</code> | </code> |
Revision as of 04:31, 8 August 2013
You can modify the "Help" menu in the Appboard Builder with custom URL's of HTML content that you wish to show in popup windows. The following file shows the XML configuration for the menu:
.../server/webapps/enportal/WEB-INF/xmlroot/appboard/config/actions.xml
[xml,N]
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<obj className="appboard.actions" id="viewerActions">
<association name="actions">
<obj className="appboard.actions.Action" label="Change Password" href="/enportal/servlet/pd/vdir/system/user/password/Change Password" />
<obj className="appboard.actions.Action" label="Help" href="http://edgedoc.edge-technologies.com/index.php/Main_Page" />
<obj className="appboard.actions.Action" label="About" href="/enportal/framework/Help/appboard_about.jsp" />
</association>
</obj>
</configuration>