2

我正在网格上进行内联编辑,但似乎无法触发任何与该编辑相关的事件。

在这里我有 afterSubmit: 我希望它在用户编辑网格中的 Quantity 字段后触发,但它永远不会触发。

$('#tblLines').jqGrid({
        url: createUrl('/CRA/GetLines/'),
        editurl: '/CRA/EditModifyLine',
        emptyrecords: '',
        datatype: 'json',
        mtype: 'GET',
        colNames: ['Group', 'Description', 'Quantity'],
        colModel: [
      { name: 'Group', index: 'Group', width: 100, align: 'left' },
      { name: 'Description', index: 'Description', width: 400, align: 'left' },
      { name: 'Quantity', index: 'Quantity', width: 150, align: 'left', editable: true },
        pager: jQuery('#pgrLines'),
        rowNum: 10,
        rowList: [5, 10, 20, 50],
        sortname: 'Group',
        sortorder: "desc",
        viewrecords: true,
        caption: 'Core Group Lines',
        onSelectRow: function(id) {
            $('#tblCoreGroupLines').editRow(id, true);
            lastsel = id;
        },
        afterSubmit: function(response, postdata) {
            alert('got here');
        },
        postData: { craId: $('#CraId').val() }
    });

我已经尝试将事件定义为 navControl 的一部分,但这也不起作用。内联编辑工作正常 - POST 成功并且结果返回,它只是永远不会遇到应该与之相关的事件。我已经尝试了所有与 Quantity 字段更改相关的事件,但它们都不起作用。

我是否在正确的地方定义了事件?我错过了网格上的属性还是什么?

4

2 回答 2

8

我认为您需要将afterSubmitin the properties 参数传递给editRow.

因此,您需要afterSubmit像这样移动:

 .....
 onSelectRow: function(id) {
     $('#tblCoreGroupLines').editGridRow(id, { afterSubmit: function(response, postdata) {
           alert('got here');
        } 
     });
     lastsel = id;
},
...

关于editGridRow的文档在这方面提供了帮助。

上面的示例将导致一个模态(因为这是唯一使用 afterSubmit 的地方)。如果您想在使用内联编辑成功更新后执行某些操作,您应该能够在 onSelectRow 内部执行以下操作

 $('#tblCoreGroupLines').editGridRow(id,true, undefined, function(res) { 
    // res is the response object from the $.ajax call
    alert('success!!') 
 } ); 

这是来自 js/grid.inlineedit.js 的 editRow 的方法签名

    editRow : function(rowid,keys,oneditfunc,succesfunc, url, extraparam, aftesarvefunc,errorfunc, afterrestorefunc) {
于 2009-09-04T22:40:15.907 回答
1

如果这是您唯一要查找的内容,您还可以在 editRow 方法中使用 aftersavefunc 事件来获取服务器响应。

于 2010-09-26T21:04:15.500 回答