AEM 6.3 -> SSort assets in alphabatical order in assets.html for coloumn view (if possible all views) | Community
Skip to main content
New Participant
July 17, 2019
Solved

AEM 6.3 -> SSort assets in alphabatical order in assets.html for coloumn view (if possible all views)

  • July 17, 2019
  • 10 replies
  • 6786 views

I have a requirement to sort the assets folders/assets in alphabetical order

eg: /content/dam/a (a folder)

      /content/dam/b

     /content/dam/c

also /content/dam/a/a.jpg

        /content/dam/a/b.jpg    

    /content/dam/a/c.jpg

Tried the following:

1) overriding  /libs/wcm/core/content/sites/jcr:content/views/column/datasource and adding properties

sortName = modified (Type is String)

sortDir = asc (Type is String)

2) creating sling:oderableFolder
But the same affect.

Appreciate the help. Thank you

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by anubhas68994354

Hi Sunil,

Can you try to overlay columns [1] to switch 'sortable' to 'true' and make columns sortable in List view. In your case if you need to sort by name - update sortable property to true for [2] node.

[1]

/libs/dam/gui/content/commons/availablecolumns

[2]

/libs/dam/gui/content/commons/availablecolumns/name

10 replies

arunpatidar
New Participant
July 22, 2019

Hi,

I think OOTB there is no way to do sorting for assets for column view like sites.

Arun Patidar
Employee
July 22, 2019

Hi Sunil,

As per me sorting works only for List view. The fix given by me is only for List view.

arunpatidar
New Participant
July 20, 2019

Hi Sunil,

I did not try this I just point out you to assets datatsource instead of site datasource, I'll check and come back to you

Arun Patidar
vijkumar
Employee
July 19, 2019

Hi Sunil,

Per my understanding sorting only works for List view as of now. The column and card views are not sortable.

Overriding above paths and adding those properties will only impact list view.

New Participant
July 19, 2019

Thank you @Arun Patidar,

did it work for you? I tried it still the same result dnt see ascending order. Please let me know if I am missing something. Currently I am on 6.3 Sp2.

New Participant
July 19, 2019

Thank you anubhas68994354

I am able to sort on list view- as well  they want it like default (to avoid user/author action to sort). Aswell column view is the one the    authors use the most here.

arunpatidar
New Participant
July 18, 2019

Can you overlay

/libs/dam/gui/content/assets/jcr:content/views/column/datasource

and add below properties to overlaid node

/apps/dam/gui/content/assets/jcr:content/views/column/datasource

sortName = name (Type is String)

sortDir = asc (Type is String)

Arun Patidar
anubhas68994354Accepted solution
Employee
July 18, 2019

Hi Sunil,

Can you try to overlay columns [1] to switch 'sortable' to 'true' and make columns sortable in List view. In your case if you need to sort by name - update sortable property to true for [2] node.

[1]

/libs/dam/gui/content/commons/availablecolumns

[2]

/libs/dam/gui/content/commons/availablecolumns/name

New Participant
July 18, 2019

Hi I checked this page, tried the same and I don’t see  it works. Wondering something to do with assets?

arunpatidar
New Participant
July 17, 2019