cancel
Showing results for 
Search instead for 
Did you mean: 

Make Workspace orderable

Julien_A_
Champ on-the-rise
Champ on-the-rise

Hello,

I wish I could change the order of the folders into my Workspace

==> How could I make the Workspaces orderable with Studio ? (make the button "Déplacer vers le bas", "Déplacer vers le haut"... appear)

Thank you

3 REPLIES 3

sdenef_
Confirmed Champ
Confirmed Champ

Ordered (or Orderable) Folder is just a different kind of Folder http://doc.nuxeo.com/display/USERDOC/Folders

Just click on the [New document] button and select "Ordered folder" type

For the Workspace doctype I think you have to add the Orderable facet I don't know how to do this in Studio, but with code it's something like :

<extension target="org.nuxeo.ecm.core.schema.TypeService" point="doctype">
<doctype name="Workspace" extends="Document">
  ...
  <facet name="Orderable"/>
  ...
</doctype>
</extension>

I think the [Move up] and [Move down] buttons will appear (they are probably managed by a filter based on the Orderable facet)

Hope it helps

Julien_A_
Champ on-the-rise
Champ on-the-rise

hello,

maybe this can help you