|
|
|
@ -1,6 +1,6 @@
|
|
|
|
|
# bi.multi_tree_combo |
|
|
|
|
|
|
|
|
|
### 树下拉框 |
|
|
|
|
### 树下拉框,继承BI.Widget |
|
|
|
|
|
|
|
|
|
{% method %} |
|
|
|
|
[source](https://jsfiddle.net/fineui/caw7efpf/) |
|
|
|
@ -54,9 +54,17 @@ BI.createWidget({
|
|
|
|
|
{% endmethod %} |
|
|
|
|
|
|
|
|
|
## 参数设置 |
|
|
|
|
| 参数 | 说明 | 类型 | 默认值 | |
|
|
|
|
| ----- | ------------- | ----- | ---- | |
|
|
|
|
| items | 子项,pId代表父节点ID | array | [] | |
|
|
|
|
| 参数 | 说明 | 类型 | 默认值 | |
|
|
|
|
| ------------ | ------------- | -------- | ------------- | |
|
|
|
|
| width | 宽度 | number | 200 | |
|
|
|
|
| height | 高度 | number | 30 | |
|
|
|
|
| items | 子项,pId代表父节点ID | array | null | |
|
|
|
|
| itemsCreator | 子项创建函数 | function | function() {} | |
|
|
|
|
|
|
|
|
|
## 方法 |
|
|
|
|
### 通用方法参见[Tree](#)方法 |
|
|
|
|
| 方法名 | 说明 | 用法 | |
|
|
|
|
| -------- | ------- | --------------- | |
|
|
|
|
| setValue | 设置文本框值 | setValue(v) | |
|
|
|
|
| getValue | 获取文本框值 | getValue() | |
|
|
|
|
| populate | 更改树结构内容 | populate(items) | |
|
|
|
|
|
|
|
|
|