Hello,
we configured our grid to be filterable by a filter row. Filter row support autocomplete, however the autocomplete's default filter operator is 'startswith'. Our requirement is, that the autocomplete's filter operator corresponds to the operator selected in the operator-dropdownlist (next to the input-field). I am trying to fullfill that requirement by adding a change-listener to the operator-dropdownlist, which does not work, because the change-event is not being triggered.
Here is my javascript-code for that purpose:
$('#mygrid .k-filter-row th').each(function () {
var filterDropdown = $($(this).find('.k-dropdown-operator input')[0]).data("kendoDropDownList");
filterDropdown.bind('change', function () {
// this listener is not being triggered after selecting a new value
});
});
Any ideas why?
Thanks in advance & best regards,
Dima.