Colspan is not working in V7.2.1

Hi
I have created a new screen and put the following code in order to span the field in 3 columns

    <lookupPickerField id="companyField" optionsContainer="companiesDc" property="company"/>
                <textArea id="descriptionField" property="description" rows="5" colspan="3"/>

But it is still showing in 1 coulumn

image

Hi,

You need to set width="100%" otherwise the component will have the default width.

Regards,
Gleb

Thanks @gorelov, it worked.