Categories | Question details Back To List | ||
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 Answer posted by Alex (support) on Dec 15, 2009 07:29 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(); }) |