Wijmo UI for the Web
filterOperatorsSortMode Field
wijmo.grid Namespace > IWijgridOptions Interface : filterOperatorsSortMode Field

Determines the order of items in the filter drop-down list. Possible values are: "none", "alphabetical", "alphabeticalCustomFirst" and "alphabeticalEmbeddedFirst"

Syntax
var instance; // Type: wijmo.grid.IWijgridOptions;
var value; // Type: string
value = instance.filterOperatorsSortMode;
var filterOperatorsSortMode : string;
Example
$("#element").wijgrid({ filterOperatorsSortMode: "alphabeticalCustomFirst" });
Remarks
Possible values are: "none": Operators follow the order of addition; built-in operators appear before custom ones. "alphabetical": Operators are sorted alphabetically. "alphabeticalCustomFirst": Operators are sorted alphabetically with custom operators appearing before built-in ones. "alphabeticalEmbeddedFirst": Operators are sorted alphabetically with built-in operators appearing before custom operators. "NoFilter" operator is always first.
See Also

Reference

IWijgridOptions Interface