jsonform / jsonform

Build forms from JSON Schema. Easily template-able. Compatible with Bootstrap 3 out of the box.
https://jsonform.github.io/jsonform/playground/index.html
MIT License
2.72k stars 553 forks source link

Multiple Fields on A Single Row #408

Closed jasondalycan closed 1 year ago

jasondalycan commented 1 year ago

Is there a way to control the layout whereby multiple fields will appear on a single row within the form (instead of each field being laid out line by line)? I reviewed the documentation but could not find reference to such an opion.

tchapi commented 1 year ago

Hi You can modify the templates if you wish.

See https://github.com/jsonform/jsonform/issues/332 for instance (there are others discussions in various issues about this)

sdetweil commented 1 year ago

you could also add a class to a wrapper div and change the layout to inline-flex, flex-direction horizontal.

jasondalycan commented 1 year ago

Ok thanks