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.

36 lines
829 B

8 years ago
/**
* Created by zcf on 2016/9/22.
*/
8 years ago
BI.SliderIconButton = BI.inherit(BI.Widget, {
7 years ago
props: {
baseCls: "bi-single-slider-button"
8 years ago
},
7 years ago
constants: {
LARGE_SIZE: 16,
NORMAL_SIZE: 12,
LARGE_OFFSET: 4,
NORMAL_OFFSET: 6
},
render: function () {
var self = this;
return {
8 years ago
type: "bi.absolute",
7 years ago
ref: function () {
self.wrapper = this;
},
8 years ago
items: [{
7 years ago
el: {
type: "bi.text_button",
cls: "slider-button bi-high-light-border",
7 years ago
ref: function () {
self.slider = this;
}
7 years ago
}
}]
7 years ago
};
8 years ago
}
});
8 years ago
BI.shortcut("bi.single_slider_button", BI.SliderIconButton);