I am programmatically adding Sort Expressions to my RadGridViewafter I populate it with data. However, the grid is having problems sorting onmore than 2 columns. Sorting by the first two acts as expected, but once athird expression is added to the collection, it takes precedence as if it werethe 2nd place Sort Expression. The SortExpressions collection is still intactand has the expressions in the order in which I'd like them sorted, but it isnot working as expected at all.
In essence, once the first two columns are chosen to be sortedby, they should stay "frozen" while the third column sorts itselfbased on the previous two sorts. However, the third column not only sortsitself, but is rearranging some of the rows previously sorted by the secondsort expression.
This also happens when using the client side to select more than2 columns to sort by.
Some background info on my project:
- Grid is Unbound, data population happens programmatically.
- The above issue seems to only happen with columns that use acustom sort operation.
- I am using Telerik Winform versions 8.2.0.0 (Willupdating to latest will fix this?)
- Application is developed and run in Visual Studio 2008 with C#
** I will/can provide snippets of code, but I will not give you my whole application, that is beyond my allowance and unnecessary.