webUI extension to add a button to existing page
I am trying to add new functionality to an existing page.
I'd like to add a Button along with other buttons in that page. When the user clicks on this button it would invoke a specific Jazz service on the server. I was wondering Jazz Web UI provide any interface to do this. Thanks. |
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]
|
Your answer
Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.
Comments
Hi Palani,