When creating a dialog you end up feeding the dialog with a list of elements
Example :
However, this makes the dialog show the label ("Input 1") on one line and then it puts the field ('input1') on the next line. I can't seem to find any documentation that shows how to manipulate this. Is there a way to have both of them on the same line ?
P.S. I've tried adding something like 'styles: display:inline;' to the above statement to see if css could do the job but no luck.
Any ideas ?
Example :
elements : [ { id : 'input1', type : 'text', label : 'Input 1' } ]
However, this makes the dialog show the label ("Input 1") on one line and then it puts the field ('input1') on the next line. I can't seem to find any documentation that shows how to manipulate this. Is there a way to have both of them on the same line ?
P.S. I've tried adding something like 'styles: display:inline;' to the above statement to see if css could do the job but no luck.
Any ideas ?
Re: Dialog Content : Having labels and fields on the same line