So in my 'actions-contrib.xml' file I can just override single properties of existing actions:
<extension target="org.nuxeo.ecm.actions.ActionService" point="actions"> <action id="view_comments" order="1" /> </extension> So the above would set the order of 'view_comments' to 1 and leave all other attributes unchanged. > Hi, > > Sean Radford a écrit : > > Hi is there a way to change the tab ordering for a specific document type? > > > > As an example can I make the 'comment' tab appear directly after the > 'summary' > > tab? > > > > (I found this posting > > http://thread.gmane.org/gmane.comp.cms.nuxeo.general/343/focus=345 but no > other > > hint as to how to do it, if it is possible). > > Unlike this post recommended, we are currently using integer-based ordering. > If you would like to change the actions order, you will have to look for > their current value in actions contributions and override them in your > own contributions. For your use case: > > <action id="view_comments" order="15" /> > > Regards, > > -- > Anahide Tchertchian, Nuxeo > Mail: [EMAIL PROTECTED] - Tel: +33 (0)1 40 33 79 87 > http://www.nuxeo.com - http://www.nuxeo.org > > _______________________________________________ ECM mailing list [email protected] http://lists.nuxeo.com/mailman/listinfo/ecm
