I want to add new rows only to the DOM....I don't want an ajax call. Same for edit. I see that I could override the ajax call with my own function, but I'd rather not have to write the logic for the insertions. Can this be done?
It can be done, but you do have you override the ajax option and use some custom logic. The localStorage example might give you some ideas on how to approach that.
Replies
It can be done, but you do have you override the
ajax
option and use some custom logic. The localStorage example might give you some ideas on how to approach that.Allan
Thank you.