Optional
blankOptional
delayedApplicable only if the filter control is TextInput. Amount of time to wait before applying the filter. This is useful if you want to wait for the user to finish typing.
300
https://www.reactdatagrid.com/examples?example=Filter_Options
Optional
excludeIf set to true, this column wont be included in the quick find mechanism by default.
Optional
filterFlag, if set to true, will automatically build this collection on basis of distinct values in the grid.
false
https://www.reactdatagrid.com/examples?example=Filter_Options
Optional
filterA flag to build the multi select filter accounting for the hierarchy of the grid.
false
Optional
filterUsed in conjunction with the
field, used to set the value of the data field for the associated ISelectFilterControl
https://www.reactdatagrid.com/examples?example=Filter_Options
Optional
filterDataprovider to use to build the list of values to dipsplay in the filter control, only applicable if the filterControl is a SelectFilter or MultiSelectFilter.
Note: It is not required to set this field. You may set the
null
Optional
filterUsed in conjunction with the
field, used to set the value of the label field for the associated ISelectFilterControl
https://www.reactdatagrid.com/examples?example=Filter_Options
Optional
filterA function that takes an item, and a filterExpression, and returns true or false on basis of whether the provided item matches the filterExpression. Please note, the filterExpression has a pointer to the iFilterControl that it was created from.
null
Optional
filterThis is usually automatically set, you dont have to manually set it, unless you're sending strings as Date objects. When set, will attempt to first convert the current value to the type you specified and then do the conversion. Values : auto,string,number,boolean,date
"auto"
Optional
filterA function that takes an item, and returns a processed value for comparison. For example, if your backend sends down strings that represents a date, wire this function up and return a date object for comparison purposes.
null
convertDate(item,col) {
var dt = flexiciousNmsp.UIUtils.resolveExpression(item,col.getDataField()).toString();
var date =flexiciousNmsp.UIUtils.getDateValue(dt,flexiciousNmsp.Constants.YMD_MASK); //will need to change this for
return date;
}
Optional
filterApplicable only when the filtercontrol is a date filter control. This is a list of Date Range Strings from the below: This has to be a list of Date Range Strings from the below:
[]
https://www.reactdatagrid.com/examples?example=Filter_Options
Optional
filterfilterDeserializerFunction is a function that takes a column, and a value, and returns a deserialized value. Primarily used by settings persistence, to deserialize the filter value.
Optional
filterThe operator to apply when doing the conversion. See FILTER_OPERATION_TYPE constant values from com.flexicious.grids.filters.FilterExpression. Here are a list of options:
FilterExpression.FILTER_OPERATION_TYPE_EQUALS
https://www.reactdatagrid.com/examples?example=Filter_Options
Optional
filterThe filterRenderer property is used to render a custom filter. This is useful when you want to render a custom filter. The default value is undefined. If you set the value to a function, the function will be used to render the filter.
https://www.reactdatagrid.com/examples?example=Filter_Options
Optional
filterApplicable only if the filter control is TextInput. If set, sets the watermark of the TextInput filter to the value specified.
Optional
useFlag, that defaults to true, indicates that in client filter mode, use the label function to perform the search (opposed) comparison to using the raw value of the "searchField" property of the column.
false
Generated using TypeDoc
Value for the blank item in multi select combobox filter control Please note, there is a space in the front of this string so it shows up right below the "All" option.
Property
Default
" [None] "