I found that ServerFiltering is not working out of the box if you set Custo() in datasorce
Like in this example
http://demos.telerik.com/aspnet-mvc/autocomplete/grouping
This is about AutoComplete control. And text send to server via onAdditionalData Function
How I need to do same for DropDownList.
my solution to access filter text input is
function onAdditionalData() {
return {
text: $("#Course").data("kendoDropDownList").filterInput[0].value
};
}
Looks a bit awkward for me
Can team please explain what if better way here