If the last item of colmodel is hidden
Screen freezes with right arrow key.
success.
$(function() {
var colm = [
{ title: "name", dataIndx: "name", dataType: "string", minWidth: 160 },
{ title: "updated at", dataIndx: "updated_at", editable: false, minWidth: 140, maxWidth: 140, align: "center" },
];
var data = [
{ "name": "abc---A", "updated_at": "2017/03/01" },
{ "name": "abb---A", "updated_at": "2017/03/02" },
{ "name": "ccc---A", "updated_at": "2017/03/03", "deleted_at": "2017/03/03" },
{ "name": "cbc---A", "updated_at": "2017/03/04" },
{ "name": "aba---A", "updated_at": "2017/03/05" },
{ "name": "ccb---A", "updated_at": "2017/03/06" },
];
var settings = {
colModel: colm,
dataModel: { data: data },
};
$("#grid_json").pqGrid(settings);
});
error.
$(function() {
var colm = [
{ title: "name", dataIndx: "name", dataType: "string", minWidth: 160 },
{ title: "updated at", dataIndx: "updated_at", editable: false, minWidth: 140, maxWidth: 140, align: "center" },
{ title: "deleted at", dataIndx: "deleted_at", hidden: true }, // <- Add only this line.
];
var data = [
{ "name": "abc---A", "updated_at": "2017/03/01" },
{ "name": "abb---A", "updated_at": "2017/03/02" },
{ "name": "ccc---A", "updated_at": "2017/03/03", "deleted_at": "2017/03/03" },
{ "name": "cbc---A", "updated_at": "2017/03/04" },
{ "name": "aba---A", "updated_at": "2017/03/05" },
{ "name": "ccb---A", "updated_at": "2017/03/06" },
];
var settings = {
colModel: colm,
dataModel: { data: data },
};
$("#grid_json").pqGrid(settings);
});
This error does not occur in ver.3.4.0,
It occurs in ver.4.x.x or higher.