0

我在煎茶触摸工作。我面临一个问题,即我的屏幕上有一个面板,其中有一个动态附加的 div。它需要相机拍摄的图像,问题是我试图滚动面板但不能

我的代码是:

{
   xtype:'panel',
   id:'picPanel',
   scroll:true, //but it doesn't work ,
   scrollable:true, // But it is not working too
   scrollable:'vertical', // Not working too 
   style:'width:112%;margin:-15px; padding:0px; margin-top:-20px;padding-right:-15px',
   html:'<div id="pic"> </div>',
} 

我也尝试将属性赋予 div

overflow:scroll; // Not working

CSS:

#pic {
   margin-top:-48px;
   padding-left:3px;
}
4

1 回答 1

1

尝试,

scrollable: {
    direction: 'vertical',
    directionLock: true
}
于 2013-01-08T09:47:27.803 回答