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.
|
|
|
!(function () {
|
|
|
|
var Widget = BI.inherit(BI.Widget, {
|
|
|
|
props: {
|
|
|
|
baseCls: "bi-tree-expander-popup",
|
|
|
|
layer: 0, // 第几层级
|
|
|
|
el: {},
|
|
|
|
isLastNode: false,
|
|
|
|
},
|
|
|
|
|
|
|
|
render: function () {
|
|
|
|
|
|
|
|
var self = this;
|
|
|
|
var o = this.options;
|
|
|
|
|
|
|
|
this.popupView = BI.createWidget(BI.extend(o.el, {
|
|
|
|
value: o.value
|
|
|
|
}), this);
|
|
|
|
|
|
|
|
this.popupView.on(BI.Controller.EVENT_CHANGE, function () {
|
|
|
|
self.fireEvent(BI.Controller.EVENT_CHANGE, arguments);
|
|
|
|
});
|
|
|
|
this.popupView.element.css("margin-left", -12 * o.layer);
|
|
|
|
this.element.css("margin-left", 12 * o.layer);
|
|
|
|
|
|
|
|
return {
|
|
|
|
type: "bi.vertical",
|
|
|
|
cls: !o.isLastNode ? "line" : "",
|
|
|
|
scrolly: null,
|
|
|
|
items: [
|
|
|
|
this.popupView,
|
|
|
|
],
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
setValue: function (v) {
|
|
|
|
this.popupView.setValue(v);
|
|
|
|
},
|
|
|
|
|
|
|
|
getValue: function () {
|
|
|
|
return this.popupview.getValue();
|
|
|
|
},
|
|
|
|
|
|
|
|
populate: function (items) {
|
|
|
|
this.popupview.populate(items);
|
|
|
|
},
|
|
|
|
|
|
|
|
getAllLeaves: function () {
|
|
|
|
return this.popupView && this.popupView.getAllLeaves();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
BI.shortcut("bi.tree_expander.popup", Widget);
|
|
|
|
}());
|