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.
35 lines
939 B
35 lines
939 B
7 years ago
|
/**
|
||
|
* Created by Dailer on 2017/7/13.
|
||
|
*/
|
||
|
Demo.MultiLayerSelectTreeCombo = BI.inherit(BI.Widget, {
|
||
|
props: {
|
||
|
baseCls: ""
|
||
|
},
|
||
|
|
||
|
render: function () {
|
||
|
var self = this;
|
||
|
var items = BI.deepClone(Demo.CONSTANTS.TREE);
|
||
|
return {
|
||
|
type: "bi.horizontal_auto",
|
||
|
items: [{
|
||
|
type: "bi.multilayer_select_tree_combo",
|
||
|
ref: function (_ref) {
|
||
|
self.tree = _ref;
|
||
|
},
|
||
|
text: "默认值",
|
||
|
items: items,
|
||
|
width: 300
|
||
|
}, {
|
||
|
type: "bi.button",
|
||
|
text: "getVlaue",
|
||
|
handler: function () {
|
||
|
BI.Msg.toast(self.tree.getValue()[0]);
|
||
|
},
|
||
|
width: 300
|
||
|
}],
|
||
|
vgap: 20
|
||
|
}
|
||
|
}
|
||
|
})
|
||
|
|
||
|
BI.shortcut("demo.multilayer_select_tree_combo", Demo.MultiLayerSelectTreeCombo);
|