2012-06-16 4 views

답변

-1

extjs에서 샘플 슬라이더를 확인 했습니까? 링크가 없다면 http://docs.sencha.com/ext-js/4-1/#!/example/slider/slider.html입니다. tip-slider 또는 custom-tip-slider을 확인하십시오.

그렇지 않으면 listner의 렌더 이벤트에서 작업해야합니다. 마우스에는 onNodeEnter 이벤트가 있습니다.

listeners: { 

    render: function (v) { 

      //  On entry into a target node, highlight that node. 
      onNodeEnter: function (target, dd, e, data) { 
       //You will get the target here, try t 
       Ext.fly(target).addCls('control-target-hover'); 
      } 
    } 
} 
+0

웰프이 작동하지 않습니다. – DanilGholtsman