cancel
Showing results for 
Search instead for 
Did you mean: 

How to change the default view of objects?

bastianhermann
Champ in-the-making
Champ in-the-making
Hi,

the default setting of Alfresco is "Icon View".

How can i change this to "Details View", so that after the login i see this one?

Thanks

Bastian
2 REPLIES 2

ribz33
Champ on-the-rise
Champ on-the-rise
do this in web-client-config-custom.xml in your extension folder :

   <config evaluator="string-compare" condition="Views">
      <!– the views available in the client –>
      <views>
         <!– default values for the views available in the client –>
         <view-defaults>
            <browse>
               <!– allowable values: list|details|icons –>
               <view>details</view>
               <page-size>
                  <list>20</list>
                  <details>20</details>
                  <icons>20</icons>
               </page-size>
            </browse>
         </view-defaults>
      </views>
</config>

bastianhermann
Champ in-the-making
Champ in-the-making
Thanks. It works!