Browse Source

update detailed tree struct

es6
iapyang 7 years ago
parent
commit
7472bbe10f
  1. 18
      uidoc/detailed/tree/bi.multi_tree_combo.md
  2. 21
      uidoc/detailed/tree/bi.switch_tree.md

18
uidoc/detailed/tree/bi.multi_tree_combo.md

@ -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) |

21
uidoc/detailed/tree/bi.switch_tree.md

@ -1,6 +1,6 @@
# bi.switch_tree
### 可切换树
### 可以单选多选切换,继承BI.Widget
{% method %}
[source](https://jsfiddle.net/fineui/crd4z1nd/)
@ -8,17 +8,17 @@
{% common %}
```javascript
var items = [{
id: -1,
id: -1,
pId: -2,
value: "根目录",
text: "根目录"
}, {
id: 1,
id: 1,
pId: -1,
value: "第一级目录1",
text: "第一级目录1"
}, {
id: 11,
id: 11,
pId: 1,
value: "第二级文件1",
text: "第二级文件1"
@ -38,11 +38,14 @@ var tree = BI.createWidget({
| items | 子项,pId代表父节点ID | array | [] |
## 方法
### 通用方法参见[Tree](#)方法
| 方法名 | 说明 | 用法 |
| ------------ | ----- | ------------ |
| switchSelect | 切换树结构 | switchSelect |
| 方法名 | 说明 | 用法 |
| ------------ | --------- | ------------ |
| switchSelect | 切换树结构 | switchSelect |
| setSelect | 设置选中项 | setSelect(v) |
| getSelect | 获取选中项 | getSelect() |
| setValue | 设置当前选中项内容 | setValue(v) |
| getValue | 获取当前选中项内容 | getValue(v) |
| populate | 更新内容 | populate(items) |

Loading…
Cancel
Save