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.
1.4 KiB
1.4 KiB
bi.multi_tree_combo
树下拉框,继承BI.Widget
{% method %} source
{% common %}
var items = [{
id: -1,
pId: -2,
value: "根目录",
text: "根目录"
}, {
id: 1,
pId: -1,
value: "第一级目录1",
text: "第一级目录1"
}, {
id: 11,
pId: 1,
value: "第二级文件1",
text: "第二级文件1"
}];
BI.createWidget({
type: "bi.multi_tree_combo",
itemsCreator: function (options, callback) {
callback({
items: items
});
},
width: 300
})
{% endmethod %}
参数设置
参数 | 说明 | 类型 | 默认值 |
---|---|---|---|
width | 宽度 | number | 200 |
height | 高度 | number | 30 |
items | 子项,pId代表父节点ID | array | null |
itemsCreator | 子项创建函数 | function | function() {} |
方法
方法名 | 说明 | 参数 |
---|---|---|
setValue | 设置文本框值 | v |
getValue | 获取文本框值 | — |
populate | 更改树结构内容 | items |
事件
事件 | 说明 |
---|---|
BI.MultiTreeCombo.EVENT_CONFIRM | 点击一级节点触发 |