在sencha touch中发出滚动Div

时间:2013-01-08 08:26:08

标签: html extjs scroll

我正在使用sencha touch。我正面临一个问题,即我的屏幕上有一个面板,我有一个动态附加的div。它需要Camera拍摄的图像,问题是我试图滚动面板但不能

我的代码是:

{
   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;
}

1 个答案:

答案 0 :(得分:1)

尝试,

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