ng2-table
ng2-table copied to clipboard
All column search working on case sensitive. How to change that
Hi, There are two or three components which I can see in your repository. I am very much confused that from where I need to start
Just change the TS code in your changeFilter method to do what ever you want with regard to case. For example, if you want to ignore case, do a reg ex with "i" like this:
item[column.name].match(new RegExp(column.filtering.filterString, 'i'))
This is what I do and it seems to work just fine.