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.

39 lines
861 B

7 years ago
# bi.simple_tree
### 简单的多选树
{% method %}
[source](https://jsfiddle.net/fineui/5qtobqxb/)
{% common %}
```javascript
var tree = BI.createWidget({
type: "bi.simple_tree",
element: 'body',
});
tree.populate(items);
```
{% endmethod %}
### 参数设置
| 参数 | 说明 | 类型 | 默认值 |
| ------------ | -------- | -------- | ---------- |
| itemsCreator | items构造器 | function | BI.emptyFn |
| items | 元素 | array | null |
### 方法
7 years ago
| 方法名 | 说明 | 参数 |
7 years ago
| -------- | ---- | ------------------------------ |
7 years ago
| populate | 去掉所有内容 | items: 子项数组 keywords: 关键字标红字符串 |
7 years ago
| setValue | 设置值 | v |
| getValue | 获得值 | — |
7 years ago
7 years ago
------