带过滤器的kendo MultiSelectBox

时间:2015-12-07 06:03:40

标签: javascript jquery kendo-ui telerik multi-select

我的项目需要MultiSelectBox。

我在KendoUI DropDownList小部件上找到了一个插件构建: http://www.telerik.com/forums/multi-select-with-checkboxes-plugin

我已将代码更改为使用KendoUI版本2015.1.429。

(我相信它也适用于更高版本。)

请看我的代码: http://dojo.telerik.com/@DUKEiLL/OziqE

如何为此插件添加过滤器选项以使其正常工作?

谢谢,

丹尼尔。

1 个答案:

答案 0 :(得分:0)

您必须添加额外的过滤选项。

 options: {
        name: "MultiSelectBox",
        index: -1,
        showSelectAll: null,
        autoClose: false,
        preSummaryCount: 1,  // number of items to show before summarising
        emptySelectionLabel: null,  // what to show when no items are selected
        selectionChanged: null, // provide callback to invoke when selection has changed
        allText: "All", // select All text 
        filter: "contains"
    },

http://dojo.telerik.com/emebO

filter:选项可以接受不同类型的过滤器,例如“startswith”,“endswith”和“contains”