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.

34 lines
615 B

7 years ago
# number_editor
7 years ago
## 数值微调器
{% method %}
[source](https://jsfiddle.net/fineui/52dhwtfz/)
{% common %}
```javascript
BI.createWidget({
7 years ago
type: 'bi.number_editor',
element: '#wrapper',
width: 300
});
```
{% endmethod %}
## 参数
| 参数 | 说明 | 类型 | 可选值 | 默认值
| :------ |:------------- | :-----| :----|:----|
| value | 编辑框中的值,-1表示自动 | number | | -1 |
## 事件
| 事件 | 说明 |
| :------ |:------------- |
7 years ago
|BI.NumberEditor.EVENT_CONFIRM| 点击增加/减少按钮或者编辑框确定时触发 |
---