Develop > Presentation layer > Customize IBM Sales Center > Online help
Add online help
To add additional online help, add extensions using the org.eclipse.help.toc extension point. Refer to the Eclipse platform documentation for more details.
Example
The following sample demonstrates the addition of a new help topic to the table of contents. The extension is defined in a new plug-in called extensions:
<?xml version="1.0" encoding="UTF-8"?> <?eclipse version="3.0"?> <plugin> <extension point="org.eclipse.help.toc"> <toc file="toc_ExtendedHelp.xml" primary="true"/> </extension> </plugin>
The following example is the table of contents XML file that is referred to in the previous example:
<?xml version="1.0" encoding="UTF-8"?> <?NLS TYPE="org.eclipse.help.toc"?> <toc label="Extended Help" topic="extendedHelp.html"> <topic label="ExtendedHelp" href="extendedHelp.html"/> </toc>
Related concepts
Related tasks
Replace the default table of contents