Multiple Forms (Angular)

Hi, I’ve seen you have a support for multiple forms, but at the end of the day it still is one form, isn’t it? I would like to know am I capable of generating several forms with different state in one application. From what I found out I can add several instances and they will be rendered but with the same state. If I try to use the wrapper component for the form and call it multiple times it will only render one. I don’t wait for the straight answer on how to do it but at least direction on how you manage state, if you use redux in angular as well and if I can change the behavior of state management. Thanks beforehand

[original thread by Nikita Midler]

Hi @nikita-midler ,
By default we provide one instance of the JsonFormsAngularService, see this line: jsonforms/jsonforms.service.ts at a2254ef52787828430ea54d5bd60ab16e130bc09 · eclipsesource/jsonforms · GitHub
To my understanding you must explicitly define the use of this service per Component to get individual instances, see Angular