I'd like to bind the OnClientNodeChecked event handler in an angular controller, so I can manipulate some values within the controller based on the value of the checked node. I tried
<telerik:RadTreeView .... OnClientNodeChecked="clientNodeChecked"...
and then inside my controller:
$scope.clientNodeChecked = function(treeView,e){
};
but it doesn't fire. Is this possible at all or do I need Kendo UI components to accomplish this? Thanks in advance