Perhaps there is a quick solution, but I could not find it ....
I want to change the default sort when I click on the column heading from 'asc' to 'desc',
I tried to add this code, it changed the sort direction, but still the arrow icon is the opposite:
onSortCol: function (index, columnIndex, sortOrder) { sortOrder = (sortOrder == 'asc' ? sortOrder = 'desc' : sortOrder = 'asc'); jQuery("#grid").setGridParam({ sortorder: sortOrder }) }
any ideas?
Thanks!
source share