For example if I have form with 2 columns and 2 rows but want to keep the 2nd column in the first 1st empty how do I do this without adding an empty value (empty Span).
-----------------
| field | empty |
-----------------
| field | field |
-----------------
Right now I'm doing:
formLayout.add(new TextField("First row and first column"));
formLayout.add(new Span());
formLayout.add(...);
.. and so on.
I could just do formLayout.add(textField, new Span(), textField, ...)
but in either case my question is how can I have the FormLayout skip a cell in the first row after the initial TextField?