ngFormBuilder
ngFormBuilder copied to clipboard
need help
I am trying to get a field label to appear on the same line as the fields.
But how to do using form builder
@travist Any comment on this one? I tried lots of custom css it's working but how to do using form builder
@desmondCreed @prashant93
You can overwrite the component.html template, add the form-inline
class to the parent div
. That will give you the base bootstrap styles for inline forms. All you have to do then is overwrite some form.io CSS:
.input-group {
width: auto;
display: inline-table;
}
thanks, for your help. But datetime field is not working as inline.