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.

53 lines
1.3 KiB

8 years ago
/**
* 垂直方向居中容器
* @class BI.VerticalAdaptLayout
* @extends BI.Layout
*/
BI.VerticalAdaptLayout = BI.inherit(BI.Layout, {
8 years ago
props: {
4 years ago
baseCls: "bi-v-a",
horizontalAlign: BI.HorizontalAlign.Left,
8 years ago
columnSize: [],
7 years ago
scrollx: false,
8 years ago
hgap: 0,
vgap: 0,
lgap: 0,
rgap: 0,
tgap: 0,
bgap: 0
8 years ago
},
7 years ago
8 years ago
render: function () {
7 years ago
var self = this, o = this.options;
8 years ago
BI.VerticalAdaptLayout.superclass.render.apply(this, arguments);
7 years ago
return {
type: "bi.horizontal",
verticalAlign: BI.VerticalAlign.Middle,
horizontalAlign: o.horizontalAlign,
7 years ago
columnSize: o.columnSize,
items: o.items,
scrollx: o.scrollx,
5 years ago
scrolly: o.scrolly,
scrollable: o.scrollable,
7 years ago
ref: function (_ref) {
self.layout = _ref;
},
hgap: o.hgap,
vgap: o.vgap,
lgap: o.lgap,
rgap: o.rgap,
tgap: o.tgap,
bgap: o.bgap
};
8 years ago
},
resize: function () {
// console.log("vertical_adapt布局不需要resize");
},
populate: function (items) {
7 years ago
this.layout.populate.apply(this, arguments);
8 years ago
}
});
5 years ago
BI.shortcut("bi.vertical_adapt", BI.VerticalAdaptLayout);