I have a workaround that I just figured out in the meantime. It works great, but a bit hacked.
var oldConfirm = window.confirm; window.confirm = function() { return true; }; grid.getKendoGrid().removeRow(selectedRow); window.confirm = oldConfirm;
Anyway, I will be interested to know about any disconnection of confirmation, and I will agree with this in return if this happens.
source share