ExtJS TreeGrid's节点鼠标悬停事件

ExtJS TreeGrid's Node mouseover event

本文关键字:节点 鼠标 悬停 事件 TreeGrid ExtJS      更新时间:2023-09-26

我已经谷歌了,没有找到extjs TreeGrid的鼠标悬停事件示例。I tried

exTree.on('mouseover', function(node,event){
    alert(1)
},this );

,但它不工作。我在监听器中也试过这个:

listeners: {
    'mouseover': function(node, event) {
        alert(1);
    }
}

您尝试过这里提供的解决方案吗?至少有2个工作示例