我在我的页面中使用jqgrid,现在我想阻止在从可编辑列中按下回车键时提交它。这是我的代码。
$( '#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中设置键:false。不工作。还有其他方法吗?
答案 0 :(得分:1)
我认为您使用接近the question中描述的表单的内联编辑。我提出the bug report。 my answer的更新部分更详细地描述了问题。如果您使用jquery.jqGrid.src.js
的固定版本可以下载here,我建议您验证是否可以解决问题。