react-filter-box icon indicating copy to clipboard operation
react-filter-box copied to clipboard

Any number comparison available?

Open claydegruchy opened this issue 2 years ago • 1 comments

Looking to have number comparison, ie Age >= 25. Is this doable in the current version?

claydegruchy avatar Mar 27 '22 15:03 claydegruchy

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} />

talha08 avatar Apr 28 '22 06:04 talha08