I'm trying to use the filter functionality of the knockoutjs ko grid. There are two problems:
- the drop-down for the filter shows "Choose columns" but the end of the column names are overwritten by a table symbol
- the filter functionality isn't working. As I type the data is not filtered
I have a plunkr for this here: https://plnkr.co/edit/Ibc0WZwyb4melgNDzcUo?p=preview
I have also tried with the most basic of grid options:
this.gridOptions = {
data: self.myData,
enablePaging: true,
pagingOptions: self.pagingOptions,
filterOptions: self.filterOptions
};
Can anyone see where I went wrong please?