有没有办法在ipad上调整列宽?它适用于笔记本电脑上的chrome,但不适用于ipad。
默认情况下,ColModel API的可调整大小选项已启用,因此它应该可以工作......我需要一个模块代码的黑客攻击。
jQuery('#list3').jqGrid({
url:'/grid?id=2',
mtype: "GET",
datatype: "json",
colNames:['Id','customerName', 'contractID'],
colModel:[
{name:'_id',index:'_id', width:50, editable:true},
{name:'customerName',index:'customerName', width:300, editable:true},
{name:'contracts.contractID',index:'contractID', width:200,align:"right", editable:true},
],
rowNum:10,
rowList:[10,20,30],
pager: '#pager3',
sortname: 'id',
viewrecords: true,
sortorder: "desc",
caption:"Customers Read only all values",
jsonReader: {
repeatitems: false,
id: "_id",
root: function (obj) {
return obj;
},
records: function (obj) {
return obj.length;
},
page: function (obj) {
return 1;
},
total: function (obj) {
return 1;
}
}
});
jQuery('#list3').jqGrid('navGrid','#pager3',{edit:false,add:false,del:false});
由于