How to provide space between two columns

Hi Cuba Team,

How to provide white space between two columns.
Please find the below attached image.

Thanks!

space

Hi,

As far as I can see, you need to customise fieldGroup columns’ width in the editor screen. You can use separately the width attribute of the fieldGroup and its columns, for example:

            <fieldGroup id="fieldGroup"
                        datasource="customerDs" 
                        width="700">
                <column width="250px">
                    <field property="a"/>
                    <field property="b"/>
                    <field property="c"/>
                </column>
                <column width="250px">
                    <field property="d"/>
                    <field property="e"/>
                    <field property="f"/>
                </column>
            </fieldGroup>

You can also take a look at the Screen Layout Rules tutorial to learn more about components’ width.