Форма с двумя столбцами и textArea

Если создать форму с двумя или более столбцами и в одном столбце расположить textArea, то элементы в других столбцах, находящиеся на одной горизонтальной линии с textArea, будут смещены на высоту textArea. Можно как-то этого избежать?

Снимок экрана 2020-11-12 в 13.23.49

 <dialogMode height="600"
            width="800"/>
<layout expand="editActions" spacing="true">
    <form id="form" dataContainer="clientDc">
        <column width="250px">
            <textField id="nameField" property="name"/>
            <textField id="phoneField" property="phone"/>
            <textField id="companyField" property="company"/>
            <textField id="emailField" property="email"/>
        </column>
        <column width="250px">
            <textArea id="descriptionField" property="description"/>
        </column>
    </form>
    <hbox id="editActions" spacing="true">
        <button action="windowCommitAndClose"/>
        <button action="windowClose"/>
    </hbox>
</layout>

У поля комментарий задать rowspan.

2 симпатии

Спасибо!