1
我google了,並沒有找到任何extjs TreeGrid的mouseover事件的例子。我試過ExtJS TreeGrid的節點mouseover事件
exTree.on('mouseover', function(node,event){
alert(1)
},this);
但它不工作。我試過這個以及聽衆裏面:
listeners: {
'mouseover': function(node, event) {
alert(1);
}
}
想知道你能否幫我嗎? :-) http://stackoverflow.com/questions/9058921/configuration-required-to-get-sencha-extjs-treegrid-example-working – MacGyver