需要一些JQGrid的帮助

时间:2011-07-14 17:25:39

标签: javascript jquery html asp.net-mvc-2 jqgrid

所以我的页面上有一个JQGrid。我的操作绑定到网格上的afterSaveCell事件 - 列在下面:

afterSaveCell: function (rowid, name, val, iRow, iCol) {
    var data = {
        id: GetGUIDValue(),
        rowid: rowid,
        columnName: name,
        cellValue: val
    };

    $.ajax({
        type: "POST",
        url: GetControllerUrl("UpdateScheduleRow", "Indications"),
        async: false,
        data: data,
        success: function (returnData) { /*ReloadGrid();*/
            if (iCol == 9) // index rate -- give enum later
            {
                if (returnData == "") {
                    alert('Cannot update Index Rate with blank value.');
                    fillRates();
                } else {
                    schedule.jqGrid('setCell', iRow, iCol, returnData);
                }
            } else {
                schedule.jqGrid('setCell', iRow, iCol, returnData);
            }
        },
        error: function (e) {
            alert('Error saving schedule row change: [Reason] ' + e.Message);
        }
    });
}

所以我想要发生的是,我希望每次网格加载时都会为网格中的每一行上的每个单元调用此代码,而不仅仅是在用户更新一个单元格时。我怎样才能做到这一点?

1 个答案:

答案 0 :(得分:0)

使用不同的事件 afterInsertRow 。这可能会解决您的问题,并在此事件中调用您的代码