Editor event when multiple rows has been submitted?
Editor event when multiple rows has been submitted?
Hi,
Im missing something here.
I need to call a function when editor form has been submitted and table updated, regardless of how many rows been submitted.
All the events in the documentation affects all rows, submitSuccess, postSubmit and so on.
I just want function fired once.
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
edit
,preEdit
andpostEdit
will each fire once per row that was edited, butsubmitSuccess
andpostSubmit
should only trigger once per submit.That can be seen in this example if you open the console and enter:
Then edit multiple rows at once.
Allan
Hi Allan,
Thanks, works, thought I've tried that but oh well