OK this as it is does work in IE:
http://paramquery.com/pro/demos/sortingBut if I simplify it to use local data then the dates do not sort in IE but are OK in Chrome...
$(function () {
var data = [['Argentina', 'Yvonne Moncada', '2016-12-12 12:23:01', '2016-12-12 12:23:01', '2016-12-12 12:23:01'],
['Argentina2', 'Yvonne Moncada2', '2015-12-12 12:23:01', '2015-12-12 12:23:01', '2015-12-12 12:23:01']];
var colM = [
{ title: "ShipCountry", width: 100, dataType: "string" },
{ title: "Customer Name", width: 130, dataType: "string" },
{ title: "Order Date", width: 100, dataType: "date" },
{ title: "Required Date", width: 100, dataType: "date" },
{ title: "Shipped Date", width: 100, dataType: "date" }
];
var dataModel = { data: data };
var $grid = $("#grid_local_sorting").pqGrid({
dataModel: dataModel,
sortModel: {
single: true,
space: true,
multiKey: null
},
numberCell: { resizable: true, title: "#", minWidth: 20, width: 30 },
colModel: colM,
pageModel: { type: 'local', rPP: 100, rPPOptions:[10,100,1000] },
showTitle: false,
columnBorders: false,
resizable: true,
hwrap: false,
wrap: false
});
});