Hi All,
For the visualization and selection of certain pages I use a RadGrid solution.
(The list is based on a recursive SharePoint SPSiteDataQuery on site.rootweb with Webs Scope = Recursive. )
One of the columns is made for "sorting"
This is a numeric (Editable) field in which the user can insert a number 1, 2, 3 etc.
This number is the order in which the selected information should come out of the Grid.
See the radgrid.png for clarification
So if 5 items are selected and only two have a number, then these two have the highest "prio" and should be first in the
foreach (string gridIndex in NieuwsbrievenGrid.SelectedIndexes)
{ }
Additional info: User will only emphasize on the "important" items. The other selected items will not get a number so ordering here can just be "default"
How can I accomplish this.
I tried to use the GridSortExpression on the "itemVolgorde" column but this doesn't work..
Thank you in advance.
For the visualization and selection of certain pages I use a RadGrid solution.
(The list is based on a recursive SharePoint SPSiteDataQuery on site.rootweb with Webs Scope = Recursive. )
One of the columns is made for "sorting"
This is a numeric (Editable) field in which the user can insert a number 1, 2, 3 etc.
This number is the order in which the selected information should come out of the Grid.
See the radgrid.png for clarification
So if 5 items are selected and only two have a number, then these two have the highest "prio" and should be first in the
foreach (string gridIndex in NieuwsbrievenGrid.SelectedIndexes)
{ }
Additional info: User will only emphasize on the "important" items. The other selected items will not get a number so ordering here can just be "default"
How can I accomplish this.
I tried to use the GridSortExpression on the "itemVolgorde" column but this doesn't work..
Thank you in advance.