我正在使用jqgrid 3.8。 我有一个电网,有一部分可调栏。 我还有一个更新的纽子,以拯救服务器上的电网内容。
如果用户点击沉积电池并改变内容,然后点击更新的纽顿,则会做以下事情。
first i am calling jqGrid savecell method with iRow, iCol. here the cell is being saved/ showing popup for validations.
但是,我希望得到一个警示,以了解牢房是否得到救治,而不是能够停止或继续我的储蓄功能。
我的样本代码也一样。
function updateGrid(){
// i have iRow, iCol references in beforeEditCell event as grideditRow, grideditCol.. these values r not getting modified nowhere else..
$(gridid).jqGrid( saveCell , grideditRow, grideditCol);
//logic to get grid data using getchangedcells and send ajax call to server.
var changedCells = $(gridid).jqGrid( getChangedCells , dirty );
}
how can i stop update logic after saveCell call if savecell is failed. saveCell is returning only jqgrid element.
是否有任何机制能够真正获得/拯救荣誉,或能够通过某种追索来挽救大脑?