Hello,
I am using Alfresco Community 2.1 .
I have modified browse.jsp to create a special view (let's say "MoreDetails"), which is basically the same as the view "Details" with more metadata displayed. I want the view "details" to be the default view for most of the folders, so I made this setting in web-client-config-custom.xml.
<config evaluator="string-compare" condition="Views">
<views>
<view-defaults>
<browse>
<view>details</view>
</browse>
</view-defaults>
</views>
</config>
This works fine, but this setting applies to all the folders. Now, I want "MoreDetails" to be the default view for only a special folder and all its subfolders.
Ideally, if a user modifies the view for a folder (for instance, changes the sort column or the sort order), I would like Alfresco to memorize these changes for that folder as well.
Is there a simple way to do it ?
Thanks in advance for your help