forked from fanruan/fineui
windy
7 years ago
23 changed files with 188 additions and 71 deletions
@ -1,38 +0,0 @@ |
|||||||
# bi.formula_combo_trigger |
|
||||||
|
|
||||||
## 基类[BI.Widget](/core/widget.md) |
|
||||||
|
|
||||||
{% method %} |
|
||||||
[source]() |
|
||||||
|
|
||||||
{% common %} |
|
||||||
```javascript |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
``` |
|
||||||
|
|
||||||
{% endmethod %} |
|
||||||
|
|
||||||
## API |
|
||||||
##### 基础属性 |
|
||||||
| 参数 | 说明 | 类型 | 可选值 | 默认值 |
|
||||||
| :------ |:------------- | :-----| :----|:---- |
|
||||||
| height | 高度 | number | —| 30 |
|
||||||
| items | 子组件 | array | — |[ ]| |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## 对外方法 |
|
||||||
| 名称 | 说明 | 回调参数 |
|
||||||
| :------ |:------------- | :----- |
|
||||||
| setValue| 设置value值|—| |
|
||||||
| getValue| 获取value值|—| |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
--- |
|
||||||
|
|
||||||
|
|
@ -0,0 +1,53 @@ |
|||||||
|
# text_value_combo |
||||||
|
|
||||||
|
## 单选combo, 基类[BI.Widget](/core/widget.md) |
||||||
|
|
||||||
|
{% method %} |
||||||
|
[source](https://jsfiddle.net/fineui/72xwcdee/) |
||||||
|
|
||||||
|
{% common %} |
||||||
|
```javascript |
||||||
|
|
||||||
|
BI.createWidget({ |
||||||
|
type: "bi.text_value_combo", |
||||||
|
text: "initial value", |
||||||
|
element: "#wrapper", |
||||||
|
width: 300, |
||||||
|
items: [{ |
||||||
|
text: "MVC-1", |
||||||
|
value: 1 |
||||||
|
}, { |
||||||
|
text: "MVC-2", |
||||||
|
value: 2 |
||||||
|
}, { |
||||||
|
text: "MVC-3", |
||||||
|
value: 3 |
||||||
|
}] |
||||||
|
}) |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
``` |
||||||
|
|
||||||
|
{% endmethod %} |
||||||
|
|
||||||
|
## API |
||||||
|
##### 基础属性 |
||||||
|
| 参数 | 说明 | 类型 | 可选值 | 默认值 |
||||||
|
| :------ |:------------- | :-----| :----|:---- |
||||||
|
| height | 高度 | number | — | 24 |
||||||
|
| items | 子items | array | — | [ ] |
||||||
|
| text | trigger初始文本内容 | string | — | " " | |
||||||
|
| chooseType | 选择类型 | const |参考button_group | BI.ButtonGroup.CHOOSE_TYPE_SINGLE | |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## 对外方法 |
||||||
|
| 名称 | 说明 | 回调参数 |
||||||
|
| :------ |:------------- | :----- |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
--- |
Loading…
Reference in new issue