filtering
Fired when the widget is about to filter the data source.
The event handler function context (available via the this
keyword) will be set to the widget instance.
Event Data
e.sender kendo.ui.MultiSelect
The widget instance which fired the event.
e.filter Object
The filter descriptor that will be used to filter the data source.
The data source filters the data items client-side unless the data source serverFiltering option is set to
true
.
Example - subscribe to the "filtering" event during initialization
<select id="multiselect" multiple="multiple">
<option>Item1</option>
<option>Item2</option>
</select>
<script>
$("#multiselect").kendoMultiSelect({
filter: "startswith",
filtering: function(e) {
//get filter descriptor
var filter = e.filter;
// handle the event
}
});
</script>
Example - subscribe to the "filtering" event after initialization
<select id="multiselect" multiple="multiple">
<option>Item1</option>
<option>Item2</option>
</select>
<script>
function multiselect_filtering(e) {
//get filter descriptor
var filter = e.filter;
// handle the event
}
$("#multiselect").kendoMultiSelect({
filter: "startswith"
});
var multiselect = $("#multiselect").data("kendoMultiSelect");
multiselect.bind("filtering", multiselect_filtering);
</script>
Example - prevent filtering event when filter value is empty
<select id="multiselect" multiple="multiple">
<option>Item1</option>
<option>Item2</option>
</select>
<script>
$("#multiselect").kendoMultiSelect({
filter: "startswith",
filtering: function(e) {
var filter = e.filter;
if (!filter.value) {
//prevent filtering if the filter does not have value
e.preventDefault();
}
}
});
</script>