This question is locked. New answers and comments are not allowed.
Hi.
When client operation mode enabled, string filtering by "Ends with" works only with 1 symbol strings.
There is bug in JS code in telerik.common.js:
endswith: function (selector, value) { return function (record) { var item = selector(record); return item.lastIndexOf(value) == item.length - 1; };},And must be
endswith: function (selector, value) {return function (record) {var item = selector(record);return item.lastIndexOf(value) == item.length - value.length;};},