Hello,
the datasource of my grid have an array of strings which i can successfully display with the valueAccessor option
The data has this format:
{
...
propertyWithArray: ['A', 'B', 'C']
}
With the valueAccessor I can display the values in a column e.g. comma separated like 'A, B, C'
But: If I group and filter by this column, I can only filter by the complete string which ist displayed in the grid.
I want to group and filter by each entry itself. If an item includes a, b, it should be filtered by A or B or C with checkboxes,
The grouping should be grouped in the same way. If I have an item with two or more items in the array. The groups should be one group for each item
A: items...
B: items...
C: items...
It one item is in group A and B, it should be appear in both groups
This groups should appear in the same way when the grid is exported to excel.
Thanks in advance for your help
Tobias A