Basically I want to add custom filter logic. Something like below.
columns = {[ ...,
{ dataField: 'name',
text: 'Product Name',
filter: textFilter(),
customOnFilterCallback: (column, value) = {
// filteredColumn = custom filter logic on column data
return filteredColumn;
}];
};
This is great @AllenFang
Thanks you so much for this amazing library. I will definitely donate to this library. If I will able to make money from the product I am developing.
Thanks @narayanchoudhary I also open to accept the donate. However, I'm in Taiwan, but it's not easy to connect paypal with local bank... lol
Hi @AllenFang
Currently, The onFilter function filter the columns by like query. I want to use https://github.com/farzher/fuzzysort algorythm. Please check it out.
Thanks
Fixed, please check RELEASE NOTE
Check EXAMPLE