Wijmo UI for the Web
getFilterOperatorsByDataType Method
wijmo.grid Namespace > wijgrid type : getFilterOperatorsByDataType Method
Specifies the type of data to which you apply the filter operators. Possible values are: "string", "number", "datetime", "currency" and "boolean".
Returns a one-dimensional array of filter operators which are applicable to the specified data type.
Syntax
$(function () {
    var returnsValue; // Type:  any
    // Parameters
    var dataType; // Type:  string
    
    returnsValue = $(".selector").wijgrid("getFilterOperatorsByDataType", dataType);
});
function getFilterOperatorsByDataType( 
   dataType : string
) : any;

Parameters

dataType
Specifies the type of data to which you apply the filter operators. Possible values are: "string", "number", "datetime", "currency" and "boolean".

Return Value

A one-dimensional array of filter operators.
Example
var operators = $("#element").wijgrid("getFilterOperatorsByDataType", "string");
See Also

Reference

wijgrid type
wijgrid jQuery Widget