Command contributions [message #673320] |
Mon, 23 May 2011 04:37  |
Eclipse User |
|
|
|
Hi,
I have a menu contribution defined in a plugin:
<menuContribution
locationURI="popup:com.jobisjob.grid.view.GridView?after=additions">
<separator name="GridView.first"/>
<menu
icon="icons/grid/debug.gif"
id="com.jobisjob.grid.debug"
label="Depuración">
<command
commandId="com.jobisjob.view.sql"
style="push">
</command>
<separator name="debug.last"/>
</menu>
</menuContribution>
and in another plugin I would like to place an additional command inside de "Debug menu".
This doesn't work:
<menuContribution
allPopups="false"
locationURI="popup:com.jobisjob.grid.view.GridView?after=debug.last">
<command
commandId="com.jobisjob.show.all.problems"
style="push">
</command>
</menuContribution>
whereas this does (although in a different position where I desire):
<menuContribution
allPopups="false"
locationURI="popup:com.jobisjob.grid.view.GridView?after=com.jobisjob.grid.debug">
<command
commandId="com.jobisjob.show.all.problems"
style="push">
</command>
</menuContribution>
Why doesn't the first one work?
Thanks in advance for any hint.
David
|
|
|
|
Powered by
FUDForum. Page generated in 0.04129 seconds