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
820 B
34 lines
820 B
7 years ago
|
# year_quarter_combo
|
||
|
|
||
7 years ago
|
##年季度选择下拉框
|
||
|
|
||
|
{% method %}
|
||
|
[source](https://jsfiddle.net/fineui/xe6Lt6mo/)
|
||
|
|
||
|
{% common %}
|
||
|
```javascript
|
||
|
BI.createWidget({
|
||
|
type: "bi.year_quarter_combo",
|
||
|
width: 300
|
||
|
});
|
||
|
```
|
||
|
|
||
|
{% endmethod %}
|
||
|
|
||
|
##参数
|
||
|
|
||
|
| 参数 | 说明 | 类型 | 可选值 | 默认值
|
||
|
| :------ |:------------- | :-----| :----|:----|
|
||
7 years ago
|
| yearBehaviors |自定义年份选择的行为(详见[button_group](../../core/abstract/button_group.md)) | object| | |
|
||
7 years ago
|
| monthBehaviors |自定义年份选择的行为(详见[button_group](../../core/abstract/button_group.md)) | object| —|{ } |
|
||
|
|
||
7 years ago
|
|
||
|
|
||
|
##事件
|
||
|
| 事件 | 说明 |
|
||
|
| :------ |:------------- |
|
||
|
| BI.YearQuarterCombo.EVENT_BEFORE_POPUPVIEW | 弹出框弹出前触发 |
|
||
|
| BI.YearQuarterCombo.EVENT_CONFIRM| 点击确认触发 |
|
||
|
|
||
7 years ago
|
|
||
7 years ago
|
---
|