Hello.
Disability scene video:
https://youtu.be/2JKXy5o5lWkI am trying to change the sort field.
It works well on your site.
url:
https://paramquery.com/pro/demos24/sorting_remote (good change)
console:
var $grid = $("#grid_sorting_remote");
var DM = $grid.pqGrid("option", "dataModel");
DM.sortIndx = ["OrderDate"];
DM.sortDir = ["up"];
$grid.pqGrid("option", "dataModel", DM);
$grid.pqGrid("refreshDataAndView");
However, there is no change in my site at all.
url:
http://php.speedmis.com/_mis/ttt.htmconsole:
var $grid = $("#grid_filter");
var DM = $grid.pqGrid("option", "dataModel");
DM.sortIndx = ["MenuName"];
DM.sortDir = ["up"];
$grid.pqGrid("option", "dataModel", DM);
$grid.pqGrid("refreshDataAndView");
The source is very simple.
Why does not it change?