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.

125 lines
3.1 KiB

/**
* Created by Urthur on 2017/9/4.
*/
Demo.Slider = BI.inherit(BI.Widget, {
7 years ago
_props: {
baseCls: "demo-slider",
min: 10,
max: 50
},
7 years ago
7 years ago
render: function () {
7 years ago
var singleSlider = BI.createWidget({
type: "bi.single_slider",
digit: 0,
7 years ago
width: 300,
7 years ago
height: 50,
cls: "layout-bg-white"
});
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",
7 years ago
height: 50,
width: 300,
digit: 0,
7 years ago
unit: "个",
cls: "layout-bg-white"
});
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,
7 years ago
width: 300,
cls: "layout-bg-white"
7 years ago
});
7 years ago
normalSingleSlider.setMinAndMax({
min: 0,
max: 100
});
normalSingleSlider.setValue(10);
7 years ago
normalSingleSlider.populate();
7 years ago
var intervalSlider = BI.createWidget({
type: "bi.interval_slider",
width: 300,
cls: "layout-bg-white"
});
intervalSlider.setMinAndMax({
min: 0,
max: 120
});
intervalSlider.setValue({
min: 10,
max: 120
});
intervalSlider.populate();
var intervalSliderLabel = BI.createWidget({
type: "bi.interval_slider_label",
width: 300,
7 years ago
unit: "个",
7 years ago
cls: "layout-bg-white"
});
intervalSliderLabel.setMinAndMax({
min: 0,
max: 120
});
intervalSliderLabel.setValue({
min: 10,
max: 120
});
intervalSliderLabel.populate();
7 years ago
return {
7 years ago
type: "bi.vertical",
7 years ago
element: this,
items: [{
7 years ago
type: "bi.center_adapt",
items: [{
el: singleSlider
}]
}, {
type: "bi.center_adapt",
items: [{
el: normalSingleSlider
}]
}, {
type: "bi.center_adapt",
items: [{
el: singleSliderLabel
}]
7 years ago
}, {
7 years ago
type: "bi.center_adapt",
items: [{
el: intervalSlider
}]
}, {
7 years ago
type: "bi.center_adapt",
items: [{
el: intervalSliderLabel
}]
7 years ago
}],
7 years ago
vgap: 20
7 years ago
};
}
});
BI.shortcut("demo.slider", Demo.Slider);