forked from fanruan/fineui
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.
26 lines
646 B
26 lines
646 B
Demo.Func = BI.inherit(BI.Widget, { |
|
props: { |
|
baseCls: "demo-func" |
|
}, |
|
render: function () { |
|
return { |
|
type: "bi.button_tree", |
|
chooseType: BI.ButtonGroup.CHOOSE_TYPE_MULTI, |
|
layouts: [{ |
|
type: "bi.vertical" |
|
}, { |
|
type: "bi.center_adapt" |
|
}], |
|
items: [{ |
|
type: "bi.label", |
|
text: "0", |
|
value: 0 |
|
}, { |
|
type: "bi.button", |
|
text: "1", |
|
value: 1 |
|
}] |
|
}; |
|
} |
|
}); |
|
BI.shortcut("demo.button_tree", Demo.Func); |