Hello Everyone,
I am working on two entities: a product and a product group. In my
Entities I have also put form annotations.
But now I want to make sure that if I show my Product form, i will be able
to select the brands with checkboxes (for example)
So in my product entity I have
/**
* @ORM\ManyToMany(targetEntity="productGroup")
* @Annotation\ComposedObject("MyModule\Entity\ProductGroup")
*/
protected $productGroup;
Now how can i get this to work in my view? That it shows checkboxes with
the items in my related entity?
Thanks very much
--
Jigal Sanders