react-filter-box
react-filter-box copied to clipboard
Any number comparison available?
Looking to have number comparison, ie Age >= 25
. Is this doable in the current version?
yes possible,
class CustomAutoComplete extends GridDataAutoCompleteHandler { // override this method to add new your operator needOperators(parsedCategory) { return [].concat([">", ">=", "<", "<=", "!=", "=="]); } }
<ReactFilterBox autoCompleteHandler={new CustomAutoComplete([], options)} customRenderCompletionItem={customRenderCompletionItem} query={query} options={options} onParseOk={onParseOk} onChange={onChange} />