Appboard/2.4/builder/help menu configuration: Difference between revisions
imported>Joe.firebaugh m (Created page with '{{DISPLAYTITLE:Customizing the Help Menu}} 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…') |
imported>Jason.nicholls No edit summary |
||
Line 4: | Line 4: | ||
'''.../server/webapps/enportal/WEB-INF/xmlroot/appboard/config/actions.xml''' | '''.../server/webapps/enportal/WEB-INF/xmlroot/appboard/config/actions.xml''' | ||
< | <code>[xml,N] | ||
<?xml version="1.0" encoding="UTF-8"?> | <?xml version="1.0" encoding="UTF-8"?> | ||
<configuration> | <configuration> | ||
Line 21: | Line 21: | ||
</configuration> | </configuration> | ||
</ | </code> |
Revision as of 04:30, 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>