The FormControlNames of my elements are generated dynamicly this way: id{{foo.foo_id}}{{bar.bar_id}}{{bob.bob_id}}
The result is something like id137.
When I now use {{form.controls.id137.status}}, in the HTML, I get VALID / INVALID like it should.
But when I do {{'form.controls.id' + foo.foo_id + bar.bar_id + bob.bob_id + '.status'}} I just get the line form.controls.id137.status on my page as a string, but it is not actually run.
How can I make Angular run this string?