Hi Dimitar,
In the API Documentation as you referring to is a section Method and method “sortby” which I guess you mean in your answer. However, we are only available to sort column once in a time.
Let say we have three columns name, date, points.
By default we don’t have any sorting in the grid, and if I call:
$(‘#competitors’).jqxGrid(‘sortby’, ‘points’, ‘desc’);
$(‘#competitors’).jqxGrid(‘sortby’, ‘date’, ‘asc’);
First it would sort by points and than will sort by date – disregarding first sorting. Instead, is there a way to keep the points sorting called firs and then sort by dates but keeping points sort as it is on first place?
I hope I express myself understandable.
Rosen.