Hi,
The column definition in the DMX 3.x versions is in a resource string called ColumnList.Text. What you see in ViewCollection.ascx.resx for instance, is:
FileCheckBox|Select|24|||||||;TemplateIcon||24|||||~/DesktopModules/Bring2mind/DMX/images/View.gif|Details||EntryId||EntryId=[PARAMETERS]&Command=Core_ViewDetails|False||~/|Icon16||||;Description|Description||||True|Description||||||Default|;StatusLocked||24||||||Locked|File;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
The columns are separated by semicolons. The data for each column is internally separated by the pipe symbol (|). If you want to take out the Author column you will find it as:
Author|Author|150||||Author|||File;
If you remove this then it will vanish. Note that DNN/DMX makes use of caching so you might have to reset IIS for changes to take effect (although I believe for resources it is automatically updated when you save the file).
Peter
|