Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

All labels for sorting in the MM asset list is done using the label ASSET_SORT_CRITERIA_DIRECTION.

Out of the box the label is {option, select, alphabeticAsc {A-Z} alphabeticDesc {Z-A} assetidAsc {Oldest} assetidDesc {Latest} favoritesAsc {Least favored} favoritesDesc {Most favored}}

The follows the syntax from the Select label from [Insert link here]. Each of the options are the “id” of the sort field in the search. For example DigizuiteSystem_Framework_Search comes out of box with the following sort fields:

<sortFields>
   <sortField id="sortAssetidAsc" fieldName="asset.assetid" DefaultToDisabled="true" sortDirection="ascending" />
   <sortField id="sortAssetidDesc" fieldName="asset.assetid" DefaultToDisabled="true" sortDirection="descending" />
   <sortField id="sortAlphabeticAsc" itemGuid="5EB3EEFC-A043-410F-89B0-29ED3EF37078" DefaultToDisabled="true" sortDirection="ascending" />
   <sortField id="sortAlphabeticDesc" itemGuid="5EB3EEFC-A043-410F-89B0-29ED3EF37078" DefaultToDisabled="true" sortDirection="descending" />
   <sortField id="sortFavoritesAsc" fieldName="item.MasterItemRefCount(D10AEF8D-AF0E-4E33-BCB8-4D71E2C55269)" DefaultToDisabled="true" sortDirection="ascending" />
   <sortField id="sortFavoritesDesc" fieldName="item.MasterItemRefCount(D10AEF8D-AF0E-4E33-BCB8-4D71E2C55269)" DefaultToDisabled="true" sortDirection="descending" />
</sortFields>

This means that if you add or remove a sort field, you need to update the label correspondingly.

  • No labels