Bootstrap-multiselect onChange事件不会在select all上触发或取消全选

时间:2017-04-12 04:08:05

标签: bootstrap-multiselect

当我选择全部选择时 - 更改事件应自动调用,但它不起作用。当我逐个选择时,更改事件有效但不适用于全部选择。

1 个答案:

答案 0 :(得分:1)

亲爱的

$('.multiselect').multiselect({
            enableFiltering: true,
            enableCaseInsensitiveFiltering: true,
            includeSelectAllOption: true,
            includeSelectAllDivider: true,
            maxHeight: 400,
            onSelectAll: function () {
                console.log("select-all-nonreq");
            },
            onDeselectAll: function () {
                console.log("deselect-all-nonreq");
            }
        });