How to use inline editor without server-process
How to use inline editor without server-process
I used datatables editor, while i use inlie edit feature, I don't want the data submitted to server, instead,I just want to avoid ajax call, what i want is that i edit the table with inline editor, when losing the focus ,the edit form disappear,the data is written inside the td,and no interaction with the server.
Is there any api available? Or i have to do it myself like the function within the source code? thank you .
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
You can use the
ajax
option to override the Editor Ajax call. There is an example of that usinglocalStorage
as the data store available here.You might also want to look at how the client / server communication that Editor performs works, which is documented in the manual.
Allan
ok, thanks