$(document).ready(function () {
$("#jqGridApt").jqGrid({
url: 'apt.php',
mtype: 'POST',
datatype: 'json',
loadtext: "",
page: 1,
colModel: [
{ label: 'id', name: 'id', key: true, width: 5,hidden: true},
{ label: 'Adress', name: 'Adress', width: 50,sortable: true,
formatter: function (cellvalue, options, rowObject) {
return rowObject.Ul + rowObject.Adress;
},
sorttype: function (cell, obj) {
return cell;
}
}
],
gridview: true,
width: 980,
height: 200,
rowNum: 150,
rownumbers: true,
viewrecords: true,
loadonce: true,
caption: 'test',
ignoreCase: true
});
$("#jqGridApt").jqGrid('bindKeys');
$('#jqGridApt').jqGrid('filterToolbar',{stringResult: true, searchOnEnter: false, defaultSearch: 'cn',operands: ''});
})