Hello, I have a similar situation like here Confirmation on row selection, however I work in an AngularJS environment, so I can't work with the suggested solution directly.
$("#Grid tbody").on("mousedown", "tr", function (e) { var ok = confirm("Change selection?"); if (ok) { $("#Grid").data("kendoGrid").select(this); }});
I suppose I need to wrap it into an angular directive somehow?
