How to make a column of Syncfusion.Windows.Controls.Grid.GridControl (WPF) sortable?
- by Lernkurve
This must be trivial, but I can't figure it out. What property of the GridControl do I have to set to make a column, say C1, alphabetically sortable?
GridControl grid = new GridControl();
grid.Model.ColumnCount = 10;
grid.Model.RowCount = 10;
grid.Model.ColumnWidths[0] = 50;
...
grid.???