Hi Abu,
I have set following event:$e["on_update"] = array("update_company", null, true);
In the function "update_company" I'm changing some values. This is working well for the edit dialog, but the values are not changed when using inline edit. Do we need to set other params as well to call the "on_update" event for inline edit?
Thanks and br. Richard
2 Answers
Hello,
It works on inline edit too, as ajax call is same for both cases.
You can try debugging by putting phpgrid_error("test $sql"); in callback. It will show as an error on grid.
As an Alternate, try checking thru firebug and check response.
If you are using celledit mode, only edited cell and PK (first column) is available on callback.
Your Answer