I have googled and didn’t find anything for extjs TreeGrid’s mouseover event example. I tried
exTree.on('mouseover', function(node,event){
alert(1)
},this );
but it is not working. I have tried this one as well inside the listeners:
listeners: {
'mouseover': function(node, event) {
alert(1);
}
}
have you tried solutions provided here? there are at least 2 working examples