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.

71 lines
2.3 KiB

8 years ago
Demo.Func = BI.inherit(BI.Widget, {
props: {
baseCls: "demo-func"
},
render: function () {
8 years ago
var ref;
8 years ago
return {
8 years ago
type: "bi.vertical",
8 years ago
items: [{
2 years ago
type: "bi.a",
el: {
type: "bi.label",
text: "这就是一个百度超链"
8 years ago
},
2 years ago
href: "https://www.baidu.com"
}],
// type: "bi.vertical",
// items: [{
// type: "bi.button_group",
// ref: function (_ref) {
// ref = _ref;
// },
// chooseType: BI.ButtonGroup.CHOOSE_TYPE_NONE,
// layouts: [{
// type: "bi.vertical",
// items: [{
// type: "bi.vtape",
// height: 200
// }]
// }],
// items: [{
// el: {
// type: "bi.label",
// text: "button_group是一类具有相同属性或相似属性的抽象, 本案例实现的是布局的嵌套(vertical布局下内嵌center_adapt布局)"
// },
// height: 150
// }, {
// el: {
// type: "bi.button",
// text: "1"
// }
// }]
// }, {
// type: "bi.button",
// text: "populate",
// handler: function () {
// ref.populate([{
// el: {
// type: "bi.label",
// text: "1"
// },
// height: 50
// }, {
// el: {
// type: "bi.button",
// text: "2"
// },
// height: 50
// }, {
// el: {
// type: "bi.label",
// text: "3"
// }
// }]);
// }
// }]
8 years ago
7 years ago
};
8 years ago
}
});
8 years ago
BI.shortcut("demo.button_group", Demo.Func);