Once i have the data, how can i send it through an On remove event?
i know create and edit send the objects and remove doesn't, but is there an option to do this with remove?
The preSubmit event can be used to modify the data object that Editor sends to the server. So for example if you need to send the data for the selected rows, as well as the ids that are used for deletion, you could use preSubmit to add the data retrieved from the TableTools API.
Answers
Are you using TableTools for the row selection? If so you could use the
fnGetSelectedData()
method to get the selected data.Allan
Once i have the data, how can i send it through an On remove event?
i know create and edit send the objects and remove doesn't, but is there an option to do this with remove?
The
preSubmit
event can be used to modify the data object that Editor sends to the server. So for example if you need to send the data for the selected rows, as well as the ids that are used for deletion, you could usepreSubmit
to add the data retrieved from the TableTools API.Allan