I have a grid with a filterable cell. A translate pipe is used in its template - this causes that the filter does not work properly, as it recognizes the original values and not the translated ones.
{
field: "xxx",
title: "foo",
width: "120px",
template: "{{ 'yyy' | translate }}",
filterable: {
cell: {
showOperators: false,
operator: 'contains',
suggestionOperator: "contains"
}
}
},
Is there any way to get the filter values translated as well?
This question is similar to https://www.telerik.com/forums/grid---custom-filtering-function-for-a-particular-column, except that this is related to Kendo for jQuery.
