Fieldgroup and hbox

Hello,

I have a fieldGroup with more columns and I want to display a hbox inline with a column (let say column “two”. Is there any possibility to do that?

 <fieldGroup id="fieldGroup"
                                datasource="myDs">

                        <column width="250px" flex="1">
                            <field property="one"/>
                            <field property="two"/>
                         </column>
 </fieldGroup>
                    <hbox id="myhbox" spacing="true"/>

Best Regards,
-n

Hello @neutrino

I suggest you to use FieldGroup columns functionality: documentation.

All fields that are not in FieldGroup should be bound manually.

Regards

Thank you!