var instance; // Type: wijmo.grid.IWijgridOptions; var value; // Type: any value = instance.filterOperatorsListShowing;
var filterOperatorsListShowing : any;
The filterOperatorsListShowing event handler is a function that is called before the filter drop-down list is shown. You can use this event to customize the list of filter operators for your users.
var instance; // Type: wijmo.grid.IWijgridOptions; var value; // Type: any value = instance.filterOperatorsListShowing;
var filterOperatorsListShowing : any;
// Limit the filters that will be shown to the "Equals" filter operator $("#element").wijgrid({ filterOperatorsListShowing: function (e, args) { args.operators = $.grep(args.operators, function(op) { return op.name === "Equals" || op.name === "NoFilter"; } } });