cancel
Showing results for 
Search instead for 
Did you mean: 

Making a view permanent

goodguy
Champ in-the-making
Champ in-the-making
by default each time when I open the web client, alfresco uses the Icon view.  How can I default it to Detail View?

Thank you.
4 REPLIES 4

gavinc
Champ in-the-making
Champ in-the-making
You can configure the default view.

Have a look at http://wiki.alfresco.com/wiki/Web_Client_Configuration_Guide for information on where to find web-client-config-custom.xml.

You need to add the following XML to the file to get what you want:

<config evaluator="string-compare" condition="Views">
   <views>
      <view-defaults>
         <browse>
            <view>details</view>
         </browse>
      </view-default>
   </views>
</config>

jdfreier
Champ in-the-making
Champ in-the-making
Is it possible to set the default view on a space by space basis? If so, how would I do this?

Thanks,
Joshua

gavinc
Champ in-the-making
Champ in-the-making
No, you can't set the default view on a space by space basis at the moment.

dwild_hq
Champ in-the-making
Champ in-the-making
Tried this and it didn't work.

Code is slightly incorrect, note the typo on the second view-defaults tag.

<config evaluator="string-compare" condition="Views">
        <views>
           <view-defaults>
              <browse>
                 <view>details</view>
              </browse>
           </view-defaults>
        </views>
     </config>

Dave Wild