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.

34 lines
967 B

8 years ago
Demo.TreeValueChooser = BI.inherit(BI.Widget, {
props: {
baseCls: "demo-tree-value-chooser-combo"
8 years ago
},
render: function () {
6 years ago
this.widget = BI.createWidget({
type: "bi.list_tree_value_chooser_insert_combo",
width: 300,
8 years ago
// items: BI.deepClone(Demo.CONSTANTS.TREEITEMS),
8 years ago
itemsCreator: function (op, callback) {
8 years ago
callback(BI.deepClone(Demo.CONSTANTS.TREEITEMS));
8 years ago
}
});
return {
type: "bi.vertical",
hgap: 200,
vgap: 10,
6 years ago
items: [this.widget]
8 years ago
};
6 years ago
},
mounted: function () {
this.widget.setValue([
["中国", "安徽省"],
["中国", "澳门特别行政区"],
["中国", "北京市"],
["中国", "福建省"],
["中国", "甘肃省"]
]);
8 years ago
}
});
BI.shortcut("demo.tree_value_chooser_combo", Demo.TreeValueChooser);