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.
52 lines
1010 B
52 lines
1010 B
7 years ago
|
# bi.single_tree_combo
|
||
|
|
||
|
### 二级树下拉框
|
||
|
|
||
|
{% method %}
|
||
|
[source](https://jsfiddle.net/fineui/oxkb9uw5/)
|
||
|
|
||
|
{% common %}
|
||
|
```javascript
|
||
|
var tree = BI.createWidget({
|
||
7 years ago
|
type: "bi.single_tree_combo",
|
||
7 years ago
|
element: 'body',
|
||
|
items: [],
|
||
|
text: "默认值",
|
||
|
width: 300,
|
||
|
});
|
||
|
```
|
||
|
|
||
|
{% endmethod %}
|
||
|
|
||
|
|
||
|
|
||
|
### 参数设置
|
||
|
|
||
|
| 参数 | 说明 | 类型 | 默认值 |
|
||
|
| ------- | ---- | ------ | ---- |
|
||
7 years ago
|
| trigger | 下拉列表的弹出方式 | object | {} |
|
||
7 years ago
|
| height | 高度 | number | 30 |
|
||
|
| text | 文本框值 | string | '' |
|
||
|
| items | 元素 | array | null |
|
||
|
|
||
|
|
||
|
|
||
|
### 方法
|
||
|
|
||
7 years ago
|
| 方法名 | 说明 | 参数 |
|
||
7 years ago
|
| -------- | ---- | ----------- |
|
||
|
| populate | 刷新内容 | items: 子项数组 |
|
||
|
| setValue | 设置值 | setValue |
|
||
|
| getValue | 获取值 | getValue |
|
||
7 years ago
|
|
||
7 years ago
|
|
||
|
## 事件
|
||
|
| 事件 | 说明 |
|
||
|
| :------ |:------------- |
|
||
|
|BI.SingleTreeCombo.EVENT_BEFORE_POPUPVIEW| 下拉框弹出前触发 |
|
||
|
其他事件详见[Input](../../base/editor/editor.md)
|
||
|
|
||
7 years ago
|
|
||
7 years ago
|
---
|
||
|
|