Select the search type
  • Site
  • Web
Search
You are here:  Support/Forums
Support

Bring2mind Forums

How to hide specific column in the default view.
Last Post 06/22/2012 4:46 PM by Peter Donker. 1 Replies.
Sort:
PrevPrev NextNext
You are not authorized to post a reply.
Author Messages
klob1100
New Member
New Member
Posts:2


--
06/22/2012 3:49 AM
Hi i just would like to hide the columns Author and Created. I just also like to reset the with of the title cell. Is there any way we can do that?

I really need to change it. I am currently using DMX Lite version for DNN6. Any response is highly appreciated. Thank you very much.
Peter Donker
Veteran Member
Veteran Member
Posts:4536


--
06/22/2012 4:46 PM
You'll need to edit the following file:
DesktopModules/Bring2mind/DMX/App_LocalResources/ViewCollection.ascx.resx.
You'll find a key called ColumnList.Text. It defines the list of columns. The default value is:

FileCheckBox|Select|24|||||||;TemplateIcon||24|||||~/DesktopModules/Bring2mind/DMX/images/View.gif|Details||EntryId||EntryId=[PARAMETERS]&Command=Core_ViewDetails|False||~/|Icon16||||;Description|Title||||True|Description||||||Default|;StatusLocked||24||||||Locked|;StatusPrivate||24||||||Private|;StatusDeleted||24||||||Deleted|;StatusApproved||24||||||Not Approved|;StatusAttention||24||||||Attention|;ActionDownload||24||||||Download|File;ActionJump||24||||||Jump|Hyperlink;ActionJumpNew||24||||||Jump in new window|Hyperlink;LastModified|Last Modified|100||{0:d}||LastModified|||;Author|Author|150||||Author|||File;DateSubmitted|Created|70||{0:d}||DateSubmitted|||;FileSize|Size|70||||FileSize|||File

Change that to:

FileCheckBox|Select|24|||||||;TemplateIcon||24|||||~/DesktopModules/Bring2mind/DMX/images/View.gif|Details||EntryId||EntryId=[PARAMETERS]&Command=Core_ViewDetails|False||~/|Icon16||||;Description|Title||||True|Description||||||Default|;StatusLocked||24||||||Locked|;StatusPrivate||24||||||Private|;StatusDeleted||24||||||Deleted|;StatusApproved||24||||||Not Approved|;StatusAttention||24||||||Attention|;ActionDownload||24||||||Download|File;ActionJump||24||||||Jump|Hyperlink;ActionJumpNew||24||||||Jump in new window|Hyperlink;LastModified|Last Modified|100||{0:d}||LastModified|||;FileSize|Size|70||||FileSize|||File

and you will have hidden the two mentioned columns. If you look carefully you'll see that the list is a concatenation of items separated by ";" foremost (these are the columns), then by "|" which define properties. The third property is width.

Peter

You are not authorized to post a reply.