fineui是帆软报表和BI产品线所使用的前端框架。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

91 lines
2.4 KiB

/**
* Created by Urthur on 2017/9/4.
*/
Demo.Slider = BI.inherit(BI.Widget, {
_defaultConfig: function () {
return BI.extend(Demo.Slider.superclass._defaultConfig.apply(this, arguments), {
baseCls: "demo-slider",
min: 10,
max: 50
})
},
_init: function () {
Demo.Slider.superclass._init.apply(this, arguments);
7 years ago
7 years ago
var singleSlider = BI.createWidget({
type: "bi.single_slider",
digit: 0,
7 years ago
width: 300,
7 years ago
height: 50
});
7 years ago
singleSlider.setMinAndMax({
min: 10,
max: 100
7 years ago
});
singleSlider.setValue(30);
7 years ago
singleSlider.populate();
singleSlider.on(BI.SingleSlider.EVENT_CHANGE, function () {
console.log(this.getValue());
});
7 years ago
var singleSliderLabel = BI.createWidget({
type: "bi.single_slider_label",
height: 30,
width: 300,
digit: 0,
unit: "个"
});
singleSliderLabel.setMinAndMax({
min: 0,
max: 100
});
singleSliderLabel.setValue(10);
singleSliderLabel.populate();
7 years ago
var normalSingleSlider = BI.createWidget({
type: "bi.single_slider_normal",
7 years ago
height: 30,
width: 300
7 years ago
});
7 years ago
normalSingleSlider.setMinAndMax({
min: 0,
max: 100
});
normalSingleSlider.setValue(10);
7 years ago
normalSingleSlider.populate();
BI.createWidget({
type: "bi.vtape",
element: this,
items: [{
el: {
type: "bi.center_adapt",
items: [{
el: singleSlider
}]
},
height: 200
}, {
el: {
type: "bi.center_adapt",
items: [{
el: normalSingleSlider
}]
},
height: 200
}, {
el: {
type: "bi.center_adapt",
items: [{
el: singleSliderLabel
}]
},
height: 200
7 years ago
}],
hgap: 20
});
}
});
BI.shortcut("demo.slider", Demo.Slider);