cancel
Showing results for 
Search instead for 
Did you mean: 

Setting default view as 'Details View'

siquser
Champ in-the-making
Champ in-the-making
After logging sucessfully into alfresco, I changed my setting to display the item as "Details View", then i logged off.
Now if I login again, the setting is not persisted as "Details View", its gets changed to "Icon View"

Any idea how to change this settings so that it does not rever back?
3 REPLIES 3

danovtx
Champ in-the-making
Champ in-the-making
After logging sucessfully into alfresco, I changed my setting to display the item as "Details View", then i logged off.
Now if I login again, the setting is not persisted as "Details View", its gets changed to "Icon View"

Any idea how to change this settings so that it does not rever back?

I'm looking for the same thing, it's annoying to have to change it every time I log in.  If this isn't currently available, could it get worked into a later release??

Thanks!

danovtx
Champ in-the-making
Champ in-the-making
I FIGURED IT OUT!!!!!

Snooping around in the forums, I found a completely unrelated post that looked suspiciously useful….  Here's what I did:

In the file:  /alfresco/tomcat/webapps/alfresco/WEB-INF/classes/alfresco/web-client-config.xml
Look for the below lines:
<browse>
<!– allowable values: list|details|icons –>
<view>icons</view>
<page-size>
<list>10</list>
<details>10</details>
<icons>9</icons>
</page-size>
</browse>

I've changed mine to the following (numbers were changed for my personal preference, but in the <view> tags is the key change):
<browse>
<!– allowable values: list|details|icons –>
<view>details</view>
<page-size>
<list>20</list>
<details>20</details>
<icons>15</icons>
</page-size>
</browse>

I switched it from icons to details, and I'm sure list would do the same if you wanted the list view as default.  Make these changes, then restart the app, and you should be good to go.

siquser
Champ in-the-making
Champ in-the-making
Very good catch; I tried your suggestion and it worked. Thanks a lot