Hello,
I can find out why initial sorting does not work for:
var gridTest = $("#test-grid").kendoGrid({ dataSource: gridDataSource(actions.search.fixTest, 100), sortable: true, pageable: false, scrollable: true, filterable: true, selectable: "row", resizable: true, width: 700, height: 630, columns: [ { field: "Index", width: "60px" }, { field: "NR", width: "60px" }, { field: "Test", width: "400px" }, ], sort: { field: "Index", dir: "desc" }});Everything else works fine; clicking on the column header does sorting. But no initial sorting!
Any ideas?
Best regards,
Manu