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.
84 lines
2.3 KiB
84 lines
2.3 KiB
/** |
|
* Created by User on 2017/3/22. |
|
*/ |
|
Demo.FlowLayout = BI.inherit(BI.Widget, { |
|
props: { |
|
baseCls: "demo-flow" |
|
}, |
|
render: function () { |
|
return { |
|
type: "bi.center_adapt", |
|
items: [{ |
|
type: "bi.left", |
|
items: [{ |
|
type: "bi.label", |
|
height: 30, |
|
text: "Left-1", |
|
cls: "layout-bg1" |
|
|
|
}, { |
|
type: "bi.label", |
|
height: 30, |
|
text: "Left-2", |
|
cls: "layout-bg2" |
|
|
|
}, { |
|
type: "bi.label", |
|
height: 30, |
|
text: "Left-3", |
|
cls: "layout-bg3" |
|
|
|
}, { |
|
type: "bi.label", |
|
height: 30, |
|
text: "Left-4", |
|
cls: "layout-bg4" |
|
|
|
}, { |
|
type: "bi.label", |
|
height: 30, |
|
text: "Left-5", |
|
cls: "layout-bg5" |
|
|
|
}], |
|
hgap: 20 |
|
}, { |
|
type: "bi.right", |
|
hgap: 20, |
|
items: [{ |
|
type: "bi.label", |
|
height: 30, |
|
text: "Right-1", |
|
cls: "layout-bg1" |
|
|
|
}, { |
|
type: "bi.label", |
|
height: 30, |
|
text: "Right-2", |
|
cls: "layout-bg2" |
|
|
|
}, { |
|
type: "bi.label", |
|
height: 30, |
|
text: "Right-3", |
|
cls: "layout-bg3" |
|
|
|
}, { |
|
type: "bi.label", |
|
height: 30, |
|
text: "Right-4", |
|
cls: "layout-bg4" |
|
|
|
}, { |
|
type: "bi.label", |
|
height: 30, |
|
text: "Right-5", |
|
cls: "layout-bg5" |
|
|
|
}], |
|
vgap: 20 |
|
}] |
|
}; |
|
} |
|
}); |
|
BI.shortcut("demo.flow", Demo.FlowLayout); |