Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am working in sencha touch. I am facing an issue i.e. I have a panel on my screen in which I have a div which dynamically appends. It takes an image taken by Camera, the issue is that I am trying to scroll the panel but couldn't

My code is :

{
   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>',
} 

I have tried to give the property to div as well

overflow:scroll; // Not working

CSS:

#pic {
   margin-top:-48px;
   padding-left:3px;
}
share|improve this question
Please no more editing and try to answer. Thanx – Burhan Mughal Jan 8 at 9:09

1 Answer

up vote 0 down vote accepted

Try,

scrollable: {
    direction: 'vertical',
    directionLock: true
}
share|improve this answer
already tried but nothing shown if i do this .. :( – Burhan Mughal Jan 8 at 9:48
Funny think it works OK in the browser but doesn't work on the native app :( – Dan Myasnikov Apr 12 at 2:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.