在我的项目中,我试图将tip text
(config) 动态添加到滑块。怎么做?我需要动态添加它,因为我在“控制器”中生成变量数组,它保存滑块每个值的文本(用于提示文本)。
var slider = Ext.getCmp('slider')
slider.setTipText(arrayOfVariables) //What should I do here instead?
setTipText
文档中没有这样的方法。那我应该用什么?
编辑:
{
xtype:'slider',
animate: false,
//plugins: [Ext.create('App.view.SliderOverride')],
cls: 'sliderStyle',
width: "80%",
id: 'slider',
value: 36/2, //must be current month
//increment: 10,
minValue: 1,
maxValue: 36,
useTips: true,
tipText: function(thumb){
alert("hello");
App.getController('TaskController')._arrMonthView[thumb.value].month;
},
},