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.

61 lines
1.4 KiB

7 years ago
# bi.multi_tree_combo
### 树下拉框,继承BI.Widget
7 years ago
{% method %}
[source](https://jsfiddle.net/fineui/caw7efpf/)
{% common %}
```javascript
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({
7 years ago
type: "bi.multi_tree_combo",
itemsCreator: function (options, callback) {
callback({
items: items
});
},
width: 300
7 years ago
})
```
{% endmethod %}
## 参数设置
| 参数 | 说明 | 类型 | 默认值 |
| ------------ | ------------- | -------- | ------------- |
| width | 宽度 | number | 200 |
| height | 高度 | number | 30 |
| items | 子项,pId代表父节点ID | array | null |
| itemsCreator | 子项创建函数 | function | function() {} |
7 years ago
## 方法
| 方法名 | 说明 | 参数 |
| -------- | ------- | --------------- |
| setValue | 设置文本框值 | v |
| getValue | 获取文本框值 | — |
| populate | 更改树结构内容 | items |
## 事件
| 事件 | 说明 |
| :------ |:------------- |
|BI.MultiTreeCombo.EVENT_CONFIRM| 点击一级节点触发 |
---
7 years ago