Expand my Community achievements bar.

SOLVED

Changing Default View in Touch

Avatar

Level 1

Hi,

Searched but could not find anything, but I am wondering if there is any way to change the default view users see in the DAM in the touch interface?  I have a request to have the default be List View instead of Card View.

Thanks in advance.

-Dave

1 Accepted Solution

Avatar

Correct answer by
Employee
3 Replies

Avatar

Correct answer by
Employee

Review here http://experience-aem.blogspot.in/2015/03/aem-6-sp2-touch-ui-site-admin-console-default-to-list-view.... Although for sites but can be done for Assets as well

Thanks,

Gaurav

Avatar

Level 1

Perfect, thank you for the information.

Avatar

Level 2

Hi David, there is a simple work around for this making default view as list view for the assets,

just overlay /libs/dam/gui/content/assets/jcr:content/views/list and under /apps/dam/gui/content/assets/jcr:content/views/list

add a property sling:orderBefore , something like below

name : sling:orderBefore                String                 card

the XML looks something like this

<views jcr:primaryType="nt:unstructured">

   <list
   jcr:primaryType="nt:unstructured"
   sling:orderBefore="card"/>

</views>

Thank you

Kedarnath Varadi