We need to build quite a complicated form, which will allow creation / updating of multiple instances of entity A, where entity A can have multiple instances of entity B.
Both types of entities are quite complicated (lots of fields and dropdowns) but only a few of these fields need filling in on creation. The requirement is to be able to create many items fast, and to allow the filling in of other details later.
Any tips on javascript / jquery patterns that might be useful for handling / storing all entity data would be useful. Also, usually I'd do something like this by copying new form sections from hidden instances on the page, but wonder if there's a better more object oriented way of doing all this in javascript. I'm in the process of reading around now, but thought I'd post on here in case someone can point me in the right direction fast, to save time.
Many thanks.