cancel
Showing results for 
Search instead for 
Did you mean: 

Alfresco 4.0b Details view

ezahir
Champ in-the-making
Champ in-the-making
Hi,
I have Alfresco 4.0b installed on ubuntu, I want to personlize the Space view as "Details" but it didn't work
I have add the following to the web-client-config-custom.xml  , and I restarted the server but nothing happen:


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

Any help please

Thanks
3 REPLIES 3

dranakan
Champ on-the-rise
Champ on-the-rise
Hello,

Do you want to personalize in explorer (http://server/alfresco) or Share (http://server/share) ?

ezahir
Champ in-the-making
Champ in-the-making
Hi Dranakan

It's about the Alfresco Explorer (http://server/alfresco).

Thanks

dranakan
Champ on-the-rise
Champ on-the-rise
Check the path of your file : Need to be in $TOMCAT_HOME/shared/classes/alfresco/extension or you need to register you file if you create it in a module : http://wiki.alfresco.com/wiki/Developing_an_Alfresco_Module#Adding_Custom_Client_Configuration

Don't forget to add the <alfresco-config> tag in your configuration :

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