Unplanned
Last Updated: 17 Jan 2020 11:41 by ADMIN
Chris
Created on: 27 Jun 2014 19:15
Category: Grid
Type: Feature Request
8
Allow Custom Filter Functions in Kendo Grid
Allow the use of a custom filter function for a given grid. operator could be assigned a function to perform the filtering. 
        var filter = {
            field: field,
            operator: function(row, column, filterUi) {
                var fieldValue = row[column.field];
                return matchesArbitratryCriteria(fieldValue);
            },
            value: value,
        };
0 comments