-
Notifications
You must be signed in to change notification settings - Fork 641
Closed
Labels
Description
I want to see if I've got the right idea for a multi-column form.
Would the correct approach be to do something like this:
<div class="row">
<form>
<div class="col-md-6" sf-schema="contacts.schema" sf-form="contacts.formLeft" sf-model="contacts.model"></div>
<div class="col-md-6" sf-schema="contacts.schema" sf-form="contacts.formRight" sf-model="contacts.model"></div>
</form>
</div>
Referencing the same schema and model for the column, but with deferent form arrays?