Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
20
How to Clear Sorting For Columns In Grid
posted

I need to clear sorting for the columns in the grid. I tried setting the currentSortDirection to "null" but it doesn't work. I also tried igGridSorting("destroy") which almost works, but then I am unable to sort again without recreating grid.

var colSettings = $grid.igGridSorting("option", "columnSettings"); for (i = 0; i < colSettings.length; i++) { if (typeof colSettings[i].currentSortDirection != "undefined") { colSettings[i].currentSortDirection = null; } } $grid.igGridSorting("option", "columnSettings", colSettings);