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.
31 lines
500 B
31 lines
500 B
7 years ago
|
# multi_select_combo
|
||
|
|
||
|
## 带确定的复选下拉框
|
||
|
|
||
|
{% method %}
|
||
|
[source](https://jsfiddle.net/fineui/oskypvLe/)
|
||
|
|
||
|
{% common %}
|
||
|
```javascript
|
||
|
BI.createWidget({
|
||
|
type: "bi.multi_select_combo",
|
||
|
element: '#wrapper',
|
||
|
width: 500,
|
||
|
itemsCreator: function(){
|
||
|
return {
|
||
|
items: [],
|
||
|
hasNext: false
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
```
|
||
|
|
||
|
{% endmethod %}
|
||
|
|
||
|
|
||
|
| 事件 | 说明 |
|
||
|
| :------ |:------------- |
|
||
|
|BI.MultiSelectCombo.EVENT_CONFIRM| 点击确定触发 |
|
||
|
|
||
|
|
||
|
---
|