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.
35 lines
923 B
35 lines
923 B
8 years ago
|
Demo.TreeValueChooser = BI.inherit(BI.Widget, {
|
||
|
props: {
|
||
|
baseCls: "demo-tree-value-chooser"
|
||
|
},
|
||
|
render: function () {
|
||
|
|
||
|
var tree = [];
|
||
8 years ago
|
for (var i = 0; i < 221; i++) {
|
||
8 years ago
|
tree.push({
|
||
8 years ago
|
value: "" + i + "",
|
||
|
text: "" + i + "",
|
||
8 years ago
|
id: i + "",
|
||
|
pId: null
|
||
|
});
|
||
|
for (var j = 0; j < 9; j++) {
|
||
|
tree.push({
|
||
|
value: i + "-" + j,
|
||
|
text: j + "",
|
||
|
id: i + "-" + j,
|
||
|
pId: i + ""
|
||
|
})
|
||
|
}
|
||
|
}
|
||
8 years ago
|
return {
|
||
|
type: "bi.tree_value_chooser_pane",
|
||
8 years ago
|
width: 300,
|
||
8 years ago
|
items: tree,
|
||
|
itemsCreator: function (op, callback) {
|
||
|
callback(tree);
|
||
|
}
|
||
|
};
|
||
|
}
|
||
|
});
|
||
8 years ago
|
BI.shortcut("demo.tree_value_chooser_pane", Demo.TreeValueChooser);
|