在我的 JQuery Grid 中,我有一个名为rownumbers的参数。
jQuery("#dateInfo").jqGrid({
url : theURL,
datatype : "json",
sortable: false,
colNames:['Date & Time'],
colModel:[{name:'arrivalTime',index:'arrivalTime', sortable: false, align:'left', width:200, editable:true,editoptions:{size:30}}],
pager : '#dateInfojsonmap',
rownumbers: true,
viewrecords: true
});
当我将参数rownumbers设置为 true 时,我得到网格表中每一行的行号。如何增加行号列的宽度?我尝试更新 CSS 样式,但没有成功。
谁能告诉我如何增加 jqGrid 中行号列的宽度?