rgillen
-
6/26/2006 11:22:58 PM
Re: Sort order of documents in tree-view?
so, I found *a* solution to this problem by changing editing the file /cmsdesk/content/treedata.aspx.cs...
changing line #321 from: nodeRows = tree.SelectNodes( Value + "/%", TreePathTypeEnum.IDPath, "", "", "", 1 ).Tables[ 0 ].Rows;
to: nodeRows = tree.SelectNodes( Value + "/%", TreePathTypeEnum.IDPath, "", "", "NodeName DESC", 1 ).Tables[ 0 ].Rows;
*fixes* the problem, however it seems messy to be tweaking the CMSDesk files this much... is there a better/more-supported way?
|