If I add an action to the extension point this way:
<action
class="com.mycompany.MyAction"
id="mycompany.myaction.MyAction"
menubarPath="actions"
/>
How can I manage its ordering programmatically? It looks like they are just sorted alphabetically according to their identifier. I do not want to give them names like "001-z", "002-a", just so that "z" appears before "a". It would also be a nightmare ordering them later.
source
share