I'm currently facing an issue with the filter functionality on the knockoutjs ko grid. There are a couple of issues that I've encountered:
- Firstly, the drop-down menu for the filters displays "Choose columns" but the column names get cut off at the end by a table symbol.
- Secondly, the filter functionality does not seem to be working properly. When typing data, there is no visible filtering happening.
https://i.sstatic.net/RT26m.png
To see my code in action, you can visit this Plunkr link: https://plnkr.co/edit/Ibc0WZwyb4melgNDzcUo?p=preview
I have tried experimenting with the most basic grid options available as well:
this.gridOptions = {
data: self.myData,
enablePaging: true,
pagingOptions: self.pagingOptions,
filterOptions: self.filterOptions
};
If anyone can spot where I might have made a mistake, I would greatly appreciate the assistance. Thank you!