I'm using the kendo grid to filter values which occasionally contain html characters using explicitly defined filters.
When the filter values do not contain html, everything works as expected. However, when the values contain html characters, it causes the filter to return 0 rows when selected. In other words, it does not match any of the values in the grid. I added logic to strip out the html characters before adding to the filters, but this also returns 0 rows.
I tried using Html.Raw() when declaring the custom filter but it didn't have impact on this issue. Is there a way to make the filters handle html properly?