var instance; // Type: wijmo.grid.IWijgridOptions; var value; // Type: any value = instance.filtering;
var filtering : any;
The filtering event handler is a function that is called before the filtering operation is started. For example, you can use this event to change a filtering condition before a filter will be applied to the data. This event is cancellable.
var instance; // Type: wijmo.grid.IWijgridOptions; var value; // Type: any value = instance.filtering;
var filtering : any;
// Prevents filtering by negative values $("#element").wijgrid({ filtering: function (e, args) { if (args.column.dataKey == "Price" && args.value < 0) { args.value = 0; } } });