Is it posible edit the data without server side? I would like to manage the data only at in the table and save all the data after, in one step, like in a transaction.
In Editor 1.5 (current release series) you need to override the ajax option to update the client-side table. This little example shows how that might be done.
Editor 1.6, which will be available later this summer, will have that available built in.
Answers
In Editor 1.5 (current release series) you need to override the
ajax
option to update the client-side table. This little example shows how that might be done.Editor 1.6, which will be available later this summer, will have that available built in.
Allan
How we can do this if we have inline editing?
In exactly the same way. The fact that the
ajax
option has been used as a function makes no difference to inline editing.Allan
Thank you Allan, the example is very useful.