Hi,
Is it Correct for sorting data in serverside.
if (e.OldSortingState == SortingState.None)
{
e.NewSortingState = SortingState.Ascending;
if (this.Sort != null)
this.Sort(new RsRoutedEventArgs(TaskType.Sort, "tskstdsort", this, e.Column.UniqueName, "0", this.IsInTabPage));
}
else if (e.OldSortingState == SortingState.Ascending)
{
e.NewSortingState = SortingState.Descending;
if (this.Sort != null)
this.Sort(new RsRoutedEventArgs(TaskType.Sort, "tskstdsort", this, e.Column.UniqueName, "1", this.IsInTabPage));
}
e.Cancel = true;
if correct then why it is not showing the sort icon.
thanks
Sampathkumar S