I'm trying to set up an Angular Dynamic Form that can be bound to some simple editors like text editors but also expose a list of items that can be bound to a grid. An example would be an Order and it's Items.
As far as I understand Angular Dynamic Forms creates a change tracking model that gets populated from the "real" object - in the example of order items, each item would be created as a FormGroup and then added to a FormArray.
This all makes sense and its easy to get it up and running when binding to simple controls but now I need to bind the order items to a data grid. This seems like a very common scenario but I see no mention of this just about anywhere? I suspect that I may not be following recommended patterns?
Can I bind a data grid (in this case Clarity VMWare) to FormGroup items?
Tx