I have a column on a grid that is a boolean value. The user has three filter choices; True, False or Show All (i.e. no filter). Because the column is boolean
filter({ field: "fieldName", operator: "startswith",value: "" })
raises an exception. The boolean column won't accept a string in the filter on the server (uses Ajax).
How can the filter for the column be 'reset' (there may be other columns filtered, so any other filters are still needed)?