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.

41 lines
1001 B

7 years ago
/**
* Created by User on 2017/3/22.
*/
Demo.HorizontalAuto = BI.inherit(BI.Widget, {
props: {
baseCls: "demo-horizontal-auto"
},
_createLayout: function () {
return BI.createWidget({
type: "bi.horizontal_auto",
items: [{
type: "bi.label",
7 years ago
text: "水平居中",
7 years ago
cls: "layout-bg1",
width: 300,
height: 30
}, {
type: "bi.label",
7 years ago
text: "水平居中优先使用该布局",
7 years ago
cls: "layout-bg2",
width: 300,
height: 30
}]
7 years ago
});
7 years ago
},
render: function () {
return {
type: "bi.grid",
columns: 1,
rows: 2,
items: [{
column: 0,
row: 0,
el: this._createLayout()
}]
7 years ago
};
7 years ago
}
});
7 years ago
BI.shortcut("demo.horizontal_auto", Demo.HorizontalAuto);