we have a editor using getData
it works fine in the last version of PQgrid, after we upgrade to version 2.1, it failed to get the value of the editing cell now.
which is : ui.$cell[0].textContent
gives me ""
which gives me the exact cell value in the past version
editor:
{
type: "textbox",
getData:function (ui)
{
$("#TESTGRID1").pqGrid( "updateRow", { rowIndx: ui.rowIndx, row: {"profits":Number(ui.$cell[0].textContent)*40} });
$(".pq-editor-border").css("display","none");
return ui.$cell[0].textContent;
}
}