nonStingFunc

nonStingFunc describes array of dictionaries objects which listed all available filter functions and display values which will be shown in the filter menu for columns with type different than string. The default value is:

nonStingFunc = [
    { "func": "eq", "name": "Equal to" }, 
    { "func": "neq", "name": "Not equal to" }, 
    { "func": "gt", "name": "Greater than" }, 
    { "func": "lt", "name": "Less than" }, 
    { "func": "gte", "name": "Greater than or equal" }, 
    { "func": "lte", "name": "Less than or equal" }, 
    { "func": "isnull", "name": "Is null" },
    { "func": "notnull", "name": "Is not null" }
]

If you want to reduce the number of items in the filter menu you can set a subset of the available options. For example if you want to have only equal to and not equal to options you can use following setting:

stringFunc = [
    { "func": "eq", "name": "Equal to" }, 
    { "func": "neq", "name": "Not equal to" }
]

If you want to localize the values shown in the menu you can change the value in the name property:

stringFunc = [
    { "func": "eq", "name": "gelijk aan" }, 
    { "func": "con", "name": "niet gelijk aan" }
]