所以我的页面上有一个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);
}
});
}
所以我想要发生的是,我希望每次网格加载时都会为网格中的每一行上的每个单元调用此代码,而不仅仅是在用户更新一个单元格时。我怎样才能做到这一点?
答案 0 :(得分:0)
使用不同的事件 afterInsertRow 。这可能会解决您的问题,并在此事件中调用您的代码