webUI extension to add a button to existing page
One answer
To add a button to the work item editor, you can add an an extension...
https://jazz.net/library/article/782
For example:
<plugin> <extension point="net.jazz.ajax.webBundles"> </extension> <extension point="com.ibm.team.workitem.web.editorToolbarAction"> <action action="net.jazz.example.workitem.web.ui.LinkedDefectEditorToolbarAction" iconContext="net.jazz.example.workitem.web" iconUri="images/Bubble.gif" iconDisabledUri="images/Bubble.gif" id="linked.defect" label="Add Related Defect"> </action> </extension> </plugin>For other pages, it depends on whether they have been designed to allow extensions.
Lawrence Smith [IBM]
Comments
Deepak Gidwani
Jan 15 '15, 6:58 a.m.Hi Palani,