Hello,
the following code worked fine with version 2011Q1 SP 1 Controls (2011.1.419.1040). The Grid shows the initial Sortindicator on the right column.
Data is bound to a gridview with columns that have the sortmember property filled.
Now we have switched to 2011 Q3 and the Gridview shows no initial sortindicator, you have to click on a columns header to see a sortinicator. Same behavior with 2011Q2.
Is this a bug, or do I have to change something in my code to make it work again?
Greetings,
Sascha
the following code worked fine with version 2011Q1 SP 1 Controls (2011.1.419.1040). The Grid shows the initial Sortindicator on the right column.
VirtualQueryableCollectionView<
object
> Data =
new
VirtualQueryableCollectionView<
object
>();
SortDescriptor sd =
new
SortDescriptor();
sd.Member =
"RWERT"
;
// sortcolumn;
if
(SortOrder ==
true
)
{
sd.SortDirection = ListSortDirection.Descending;
}
Data.SortDescriptors.Add(sd);
Data is bound to a gridview with columns that have the sortmember property filled.
Now we have switched to 2011 Q3 and the Gridview shows no initial sortindicator, you have to click on a columns header to see a sortinicator. Same behavior with 2011Q2.
Is this a bug, or do I have to change something in my code to make it work again?
Greetings,
Sascha