2011-12-02 3 views
1

나는 extGs TreeGrid의 mouseover 이벤트 예제에 대해 봤지만 아무 것도 찾지 못했습니다. 시도 :ExtJS TreeGrid의 노드 mouseover 이벤트

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

그러나 작동하지 않습니다. 나는 청취자 내부뿐만 아니라이 일을 시도 :

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

답변

2

당신이 솔루션은 here를 제공하는 시도? 적어도 2 개의 작업 예제가 있습니다

+0

나를 도울 수 있다면 궁금하십니까? :-) http://stackoverflow.com/questions/9058921/configuration-required-to-get-sencha-extjs-treegrid-example-working – MacGyver