2012-09-23 5 views
0

캐 러셀 스크롤 가능?회전식 테이블?

회전식으로 이미지를 스크롤하는 해결책이 있습니까? 스크롤, 스크롤,

thks을 ... 작동하지 않습니다

코드 :

Ext.define('carousel.view.test', { extend: 'Ext.carousel.Carousel', 


    xtype:'test', 


    config: { 
     fullscreen: true, 
     scrollable: 'vertical, 


     items: [ 
      { 
       xtype: 'image', 
       html: '<img src=./resources/images/1.png />', 
          scrollable: 'vertical'     


      }, 
      { 
       xtype: 'image', 
       html: '<img src=./resources/images/2.png />' 

      } 
     ] 
    } 


}); 

편집 :

나는 해결책을 찾을 수도 있지만, 안드로이드에 크롬에없는 작동 또는 Ios, 왜?

그것은

config: {  

     items: [ 
      {xtype: 'container', 

       scrollable: 'vertical', 
       directionLock:true, 
       items:[ 
          { xtype: 'image',       

          html: '<img src=./resources/images/1.png />'} 
       ]        
      }, 

답변

0
자신의 포럼에 엽차 회원에 따르면
scrollable : { 
    direction : 'both', 
    directionLock : true 
} 
+0

네 스크롤 {}는 일이었다! th – Huberte

0

,

scrollable : { 
    direction  : 'vertical', 
    directionLock : true 
}, 

여기에 붙여 잊었 죄송 작동

관련 문제