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.
47 lines
1.2 KiB
47 lines
1.2 KiB
/** |
|
* Created by Dailer on 2017/7/26. |
|
*/ |
|
|
|
|
|
Demo.SelectLevelTree = BI.inherit(BI.Widget, { |
|
|
|
render: function () { |
|
var self = this; |
|
var tree = BI.createWidget({ |
|
type: "bi.select_level_tree", |
|
items: BI.deepClone(Demo.CONSTANTS.LEVELTREE), |
|
value: "11" |
|
}); |
|
|
|
return { |
|
type: "bi.vtape", |
|
items: [{ |
|
el: tree |
|
}, { |
|
el: { |
|
type: "bi.button", |
|
height: 25, |
|
text: "getValue", |
|
handler: function () { |
|
BI.Msg.alert("", JSON.stringify(tree.getValue())); |
|
} |
|
}, |
|
height: 25 |
|
}, { |
|
el: { |
|
type: "bi.button", |
|
height: 25, |
|
text: "setValue (第二级文件1)", |
|
handler: function () { |
|
tree.setValue(["2"]); |
|
} |
|
}, |
|
height: 25 |
|
}], |
|
width: 500, |
|
hgap: 300 |
|
}; |
|
} |
|
}); |
|
|
|
BI.shortcut("demo.select_level_tree", Demo.SelectLevelTree); |