0

我在我的页面中使用 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。不工作。还有什么方法吗?

4

1 回答 1

1

我想您使用的内联编辑接近问题中描述的形式。我提出了错误报告我的答案更新部分更详细地描述了这个问题。如果您使用可以在此处下载的固定版本,我建议您验证您的问题是否会得到解决。jquery.jqGrid.src.js

于 2013-03-29T18:14:53.657 回答