I want to do some checking and add some code before and after deleting the row in kendo grid. I don't want the default delete behaviour. In column, I add the custom field. It can link to javascript test function but cannot link to angularjs function. If I move that template to the html page, it can link to angularjs function.
columns: [ ...
{ field: "X", title:"", template: '<a ng-click="deleteSerial()" onclick="test()" class="k-button" style="width:15px">X</a>', width: "30px" }
],
What am I missing or any other better to do it?
Thanks.