Hi,
I have a N-to-N relationship of this type:
Product ------- ProductIngredient ------ Ingredient
In my Datagrid i want to display in each row informations about the Product entity and the list of ingredients, something like this: Name | Expire Date | Ingredients ---------------------------------------------------- Bread | 01/01/1900 | Flour | | Water ----------------------------------------------------
And possibly filter for the single ingredient, is it achievable?
Thank you.
My initial suggestion would be to create a webblock for the ingredients cell and give the webblock the following inputs:
-List of Ingredients-Id of ingredient you want to show
And in the webblock you can then use a data action to filter for the correct value or use a if-switch
And how can i insert the Block inside a Datagrid column?