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.

26 lines
567 B

8 years ago
/**
* 弹出层
* @class BI.PopoverSection
* @extends BI.Widget
* @abstract
*/
BI.PopoverSection = BI.inherit(BI.Widget, {
7 years ago
_init: function () {
8 years ago
BI.PopoverSection.superclass._init.apply(this, arguments);
},
7 years ago
rebuildNorth: function (north) {
8 years ago
return true;
},
7 years ago
rebuildCenter: function (center) {},
rebuildSouth: function (south) {
8 years ago
return false;
},
7 years ago
close: function () {
8 years ago
this.fireEvent(BI.PopoverSection.EVENT_CLOSE);
},
7 years ago
end: function () {
8 years ago
}
});
BI.PopoverSection.EVENT_CLOSE = "EVENT_CLOSE";