52,780
社区成员
发帖
与我相关
我的任务
分享
new Ext.Slider({
width: 214,
minValue: 0,
maxValue: 100,
plugins: new Ext.slider.Tip({
getText: function(thumb){
return String.format('{0}% complete', thumb.value);
}
})
});
{
fieldLabel:'透明度',
name:'opacity',
xtype:'sliderfield',
minValue: 0,
maxValue: 100,
increment: 10,
plugins: new Ext.slider.Tip({
getText: function(thumb){
return String.format('<b>{0}%</b>', thumb.value);
}
})
}
{
fieldLabel:'透明度',
name:'opacity',
xtype:'sliderfield',
minValue: 0,
maxValue: 100,
increment: 10,
tipText: function (thumb){//这样就ok了
return String.format('<b>{0}%</b>', thumb.value);
}
}