Hi Team,
Further to my query above, i am seeking for the ‘select’ event handle as well.
In jquery model it works as follows :
$(‘#jqxTree’).on(‘select’,function (event){
var args = event.args;
var item = $(‘#jqxTree’).jqxTree(‘getItem’, args.element);
alert(“selected item”+item);
}
How can we achieve the same with Angular Directive implementation (<jqx-tree> )?
Regards,
Rao.