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.
41 lines
1.1 KiB
41 lines
1.1 KiB
/** |
|
* Created by Dailer on 2017/7/13. |
|
*/ |
|
Demo.MultiTreeCombo = 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.multi_tree_combo", |
|
ref: function (_ref) { |
|
self.tree = _ref; |
|
}, |
|
itemsCreator: function (options, callback) { |
|
console.log(options); |
|
|
|
|
|
callback({ |
|
items: items |
|
}); |
|
}, |
|
width: 300 |
|
}, { |
|
type: "bi.button", |
|
text: "getVlaue", |
|
handler: function () { |
|
BI.Msg.toast(JSON.stringify(self.tree.getValue())); |
|
}, |
|
width: 300 |
|
}], |
|
vgap: 20 |
|
} |
|
} |
|
}) |
|
|
|
BI.shortcut("demo.multi_tree_combo", Demo.MultiTreeCombo); |