I created a grid with column defs and showFilter. One column use cellTemplate to manipulate the output, based on value of that field.
When I try filter data, I notice that filter ignores that column.
How I filter all columns from grid, including the column that refers cellTemplate?
This is my grid:
$scope.gridStatusOptions = {
data: 'status',
showFilter: true,
columnDefs: [{ field: 'name', displayName: 'Name', cellFilter: '', cellTemplate: '' },
{ field: 'value', displayName: 'Value', cellFilter: '', cellTemplate: "<div class='ngCellText' ng-class='col.colIndex()'><span>{{formatState(row.entity)}}</span></div>"}]
};
Regards