cancel
Showing results for 
Search instead for 
Did you mean: 

How can I change 'items per page' permanently?

r_vanderknaap
Champ in-the-making
Champ in-the-making
How can I change "items per page" permanently?
4 REPLIES 4

etzapata
Champ in-the-making
Champ in-the-making
Hi,
     I am also interested in this. I also want to make 'Details View' to be the dafault view when opening a space/folder. How do we do this?
     Thank you very much for any inputs :lol:

EriC

kevinr
Star Contributor
Star Contributor
Those customisations and many others that can be applied to the web-client can be found here:
http://wiki.alfresco.com/wiki/Simple_Customisations#Changing_the_Default_View_in_Web_Client

Thanks,

Kevin

r_vanderknaap
Champ in-the-making
Champ in-the-making
I already found it in the alfresco book.

@ etzapata:

The book Alfresco by Munwar Shariff explains in chapter 11 how to change your default settings on "details view", "Icon view" and "browse view". The book also explains how to see more documents on a page.

In the extensions folder (<alfresco_install_folder>\tomcat\shared\classes\alfresco\extension) you have to add the following XML block in the web-client-config-custom.xml file.

<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>9</list>
        <details>15</details>
        <icons>9</icons>
        </page-size>
     </browse>
     </view-defaults>
</views>
</config>

etzapata
Champ in-the-making
Champ in-the-making
Thank you very much! These are rather helpful! :lol:
Cheers!

EriC