It's all about the answers!

Ask a question

webUI extension to add a button to existing page


Palani Kumanan (11) | asked Oct 29 '08, 7:23 p.m.
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.

Comments
Deepak Gidwani commented Jan 15 '15, 6:58 a.m.

 Hi Palani,


         Did you get the solution for adding a button into existing work item or web UI. If you have please share the procedure  with me.

One answer



permanent link
Lawrence Smith (3764) | answered Apr 02 '15, 8:25 a.m.
JAZZ DEVELOPER
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


Register or to post your answer.