0

我浏览了 Sencha 论坛,发现其他人问过这个问题并得到了回答。但是,我似乎无法重现任何解决方案。我试过了:

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();}});

并尝试:

Ext.override(Ext.util.Scroller.Indicator, {
    hide: function() {
        var me = this;
        if (this.hideTimer) {
            clearTimeout(this.hideTimer);
        }
        return this;
    }
});

下面的这些链接是我要重现的内容。有没有人运气好让滚动条总是显示在 Sencha Touch 2 中?在 Sencha Architect 中将在哪里输入 CSS 技巧(在下面的网站中讨论)?

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

4

1 回答 1

0

尝试将其放入您的应用程序 css 文件中:

.x-scroll-indicator {
    opacity: 0.5 !important;
}

这应该总是让它可见

于 2013-06-15T08:58:08.007 回答