How to sort reset columns with Kendo user interface network?

enter image description here

I am trying to sort the reset columns (see image above) so that there are no up or down arrows. I tried $("#grid").data("kendoGrid").refresh() redraw the grid, but did not format the column. Anything else I can try next to updating my browser?

+4
source share
1 answer

Try:

 $("#grid").data("kendoGrid").dataSource.sort({}); 
+12
source

All Articles