Scroll bars

I’m trying to enable scrolling inside a Tab but is unable to get this to work.



I have the latest version of the code and is using the following functions in the initialization code:

tabbar.enableScroll(true);

tabbar.showInnerScroll();



What other options can I try to enable scroll bars?



Regards


Hello,


the tabbar.showInnerScroll(); method should be called after all tabs are added. If you use dynamic loading, after xml loading:


tabbar.loadXML(url,function(){


tabbar.showInnerScroll();


})