I have a Kendo grid where I need to set up a confirmation confirmation window for deletion based on the data in the deleted row. I have a customized generic message as part of the Grid configuration as shown below.
editable: {
confirmation: "Are you sure that you want to delete this record?",
mode: "popup",
template: kendo.template($("#popup-editor").html())
}
I looked at using the remove handler, but it fires after the row has been deleted.
source
share