Got an Issue,
I've got a Multitabbed Form. These Tabs can be created and deleted(Via JS) by the User. All these Tabs contain the exact same Fields all belonging to aparticular Entity. (As an Instance,Various RateSlots "belonging" to a RateTag)
My Issue is how to submit the details on all tabs.
In My current Implementation, i dynamically assign new IDs to each form fields in the various tabs, loop through them, Add all values to an Array and make an API call,passing RateSlots for a RateTag..
I somehow think this is inefficient, Please is there a better Approach.
Looking at having the Fields in all the Tabs having the Same ID instead of multiple different ids.
There isn't any Backing Model as an API call is made with the details on form Submit.
Any Help would be highly appreciated