Hello,
You can handle remove event and show confirm dialog and if the action is cancelled prevent further execution.
Example - http://dojo.telerik.com/@rusev/eHAvu
remove: function(e) {
if (!confirm("Are you sure?")) {
e.preventDefault();
}
}
Regards,
Nikolay Rusev
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!