ComponentOne GridView for ASP.NET WebForms
jQuery.wijmo.c1gridview Namespace / options type / filterOperatorsSortMode Option
In This Topic
    filterOperatorsSortMode Option
    In This Topic
    Determines the order of items in the filter drop-down list. Possible values are: "none", "alphabetical", "alphabeticalCustomFirst" and "alphabeticalEmbeddedFirst"
    Syntax
    // Get value
    var value; // Type:  string
    value = $(".selector").c1gridview("option", "filterOperatorsSortMode");
    
    // Set value
    var newValue; // Type:  string
    $(".selector").c1gridview("option", "filterOperatorsSortMode", newValue);
    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.
    Browser Compatibility
    8
    5
    5
    See Also