Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 extjs 4.1.3 中使用滑块。我在滑块顶部获得了用户提示。现在我希望滑块代码的底部如下
var slider=Ext.create('Ext.slider.Single', { width: 300, value: 100, increment: 5, minValue: 5, maxValue: 100, labelWidth: 160, });
我的滑块结果如下图所示:
我想要如下图
请帮助我。
Ext.slider.Tip.prototype.offsets = [0, 50];
只需在代码上方添加这一行。这使得所有滑块的tipText都在下方,无需逐一提及。
或者,如果您只想添加到该滑块,则使用以下侦听器:
listeners:{ render:function( ths, eOpts ){ ths.plugins[0].offsets = [0,50]; } }