i have a grid with in each record a field with a group of id’s comma separated (array).
now i want to show a list of records where each id has it’s own record shown
example:
item | category | groups| date
1 | 3 | 123,67,93,14 | 14-05-1970
2 | 5 | 56,123,67| 23-09-1999
should be shown in a grid
item | category | groups| date
1 | 3 | 123 | 14-05-1970
1 | 3 | 67 | 14-05-1970
1 | 3 | 93| 14-05-1970
1 | 3 | 14 | 14-05-1970
2 | 5 | 56| 23-09-1999
2 | 5 | 123| 23-09-1999
2 | 5 | 67| 23-09-1999
suggestions?