fineui是帆软报表和BI产品线所使用的前端框架。

24 lines
644 B

8 years ago
/**
* guy
* @extends BI.Single
* @type {*|void|Object}
*/
BI.ImageCheckbox = BI.inherit(BI.IconButton, {
7 years ago
_defaultConfig: function () {
var conf = BI.ImageCheckbox.superclass._defaultConfig.apply(this, arguments);
8 years ago
return BI.extend(conf, {
baseCls: (conf.baseCls || "") + " bi-image-checkbox check-box-icon",
8 years ago
selected: false,
handler: BI.emptyFn,
width: 16,
height: 16,
iconWidth: 16,
iconHeight: 16,
7 years ago
});
},
8 years ago
});
BI.ImageCheckbox.EVENT_CHANGE = BI.IconButton.EVENT_CHANGE;
8 years ago
BI.shortcut("bi.image_checkbox", BI.ImageCheckbox);