我在我的页面中使用 jqgrid,现在我想防止在从可编辑列中按下 enter 键时提交它。这是我的代码。
$( '#mygrid' ).jqGrid( {
url: '/Mycontroller/LoadMygrid',
postData: {
bank_ID: function () { return $( '#bank_accountHead_ID' ).val() },
},
//type of data
datatype: 'json',
//url access method type
mtype: 'POST',
editurl: 'clientArray',
colNames: ['chkbox', 'Sl.#', 'amount'],
//columns model
colModel: [
{ name: 'chkSelect', index: 'chkSelect', align: "center", editable: true, edittype: 'checkbox', width: '20px', editoptions: { value: "True:False" },
fixed: true, formatoptions: { disabled: false}
},
{ name: 'Sl_No', index: 'Sl_No', align: 'left'},
{ name: 'TotalAmt', index: 'TotalAmt', align: 'right', editable: true, edittype: 'text' }
]
..................
});
我尝试在 colmodel 中设置 keys:false。不工作。还有什么方法吗?