Hello everyone, I’m trying to add a fragment inside a form component. The form looks good but has a component alignment error which I don’t know if it’s its default behavior or if it’s a bug.
I use the following code in the xml of the screen
<groupBox id="overviewBox" caption="mainMsg://overviewBox.caption">
<form id="form" dataContainer="taxAuthorityDc">
<column width="770px">
<textField id="identificationField" property="identification" width="180px"/>
<textField id="nameField" property="name"/>
<fragment screen="trz_RefersToAddressFragment">
<properties>
<property name="addressDc" ref="addressDc"/>
<property name="addressTypeField" value="false"/>
<property name="regionField" value="false"/>
<property name="zoneField" value="false"/>
<property name="latitudeField" value="false"/>
<property name="longitudeField" value="false"/>
<property name="hiddenField" value="false"/>
</properties>
</fragment>
<fragment screen="trz_RefersToContactFragment">
<properties>
<property name="contactDc" ref="contactDc"/>
</properties>
</fragment>
<checkBox id="hiddenField" property="hidden"/>
</column>
</form>
</groupBox>
Whether or not it is your default behavior how could you fix it?
Regards,
Nelson F.