From 7472bbe10f915e570d786ff6b4cabdc2293a30de Mon Sep 17 00:00:00 2001 From: iapyang Date: Wed, 30 Aug 2017 11:21:30 +0800 Subject: [PATCH] update detailed tree struct --- uidoc/detailed/tree/bi.multi_tree_combo.md | 18 +++++++++++++----- uidoc/detailed/tree/bi.switch_tree.md | 21 ++++++++++++--------- 2 files changed, 25 insertions(+), 14 deletions(-) diff --git a/uidoc/detailed/tree/bi.multi_tree_combo.md b/uidoc/detailed/tree/bi.multi_tree_combo.md index c0287ef69..5c5bb86cf 100644 --- a/uidoc/detailed/tree/bi.multi_tree_combo.md +++ b/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](#)方法 \ No newline at end of file +| 方法名 | 说明 | 用法 | +| -------- | ------- | --------------- | +| setValue | 设置文本框值 | setValue(v) | +| getValue | 获取文本框值 | getValue() | +| populate | 更改树结构内容 | populate(items) | + diff --git a/uidoc/detailed/tree/bi.switch_tree.md b/uidoc/detailed/tree/bi.switch_tree.md index 6d1e7645b..6df36d1da 100644 --- a/uidoc/detailed/tree/bi.switch_tree.md +++ b/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) |