I have been through the Sencha forums and found that other people have asked this question and it was answered. However, I cannot seem to reproduce any solutions. I've tried:
Ext.override(Ext.scroll.indicator.CssTransform, {hide: function() {return false;},initialize:function(){this.show();}});
Ext.override(Ext.scroll.indicator.Default, {hide: function() {return false;},initialize:function(){this.show();}});
Ext.override(Ext.scroll.indicator.ScrollPosition, {hide: function() {return false;},initialize:function(){this.show();}});
and tried:
Ext.override(Ext.util.Scroller.Indicator, {
hide: function() {
var me = this;
if (this.hideTimer) {
clearTimeout(this.hideTimer);
}
return this;
}
});
These links below are what I'm trying to reproduce. Has anybody had any luck making the scroll bars always show in Sencha Touch 2? And where would one enter the CSS trick in Sencha Architect (discussed in the websites bellow)?
http://www.sencha.com/forum/showthread.php?146621-Making-List-Scroll-Idicators-show-permanently
http://www.sencha.com/forum/showthread.php?151468-Making-scrollbar-visible-all-the-time