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.
38 lines
988 B
38 lines
988 B
/** |
|
* Created by User on 2017/3/22. |
|
*/ |
|
Demo.HtapeLayout = BI.inherit(BI.Widget, { |
|
props: { |
|
baseCls: "demo-htape" |
|
}, |
|
render: function () { |
|
return { |
|
type: "bi.htape", |
|
items: [ |
|
{ |
|
width: 100, |
|
el: { |
|
type: "bi.label", |
|
text: "1", |
|
cls: "bi-background" |
|
} |
|
}, { |
|
width: 200, |
|
el: { |
|
type: "bi.label", |
|
text: "2", |
|
cls: "layout-bg2" |
|
} |
|
}, { |
|
width: "fill", |
|
el: { |
|
type: "bi.label", |
|
text: "3", |
|
cls: "layout-bg3" |
|
} |
|
} |
|
] |
|
}; |
|
} |
|
}); |
|
BI.shortcut("demo.htape", Demo.HtapeLayout); |