Details
Description
Currently we only have the definition <field-group> in widget-form.xsd to group fields together. This definition only allows a vertical display of the fields.
Having a possibility to display the grouped fields horizontally would extend the function.
This could be as:
<field-group title="${uiLabelMap.Phone}" display-align="hor"> <field name="intlAccessCode><text size="5"/></field> <field name="areaCode><text size="5"/></field> <field name="phoneNo><text size="5"></field> <field name="extension><text size="5"></field> </field-group>
resulting in:
<input type="text" name="intlAccessCode" size="5"/><input type="text" name="areaCode" size="5"/><input type="text" name="phoneNo" size="5"/><input type="text" name="extension" size="5"/>
in the same grid element (tr/td combination) in stead of creating new tds for each field-group element.
Attachments
Issue Links
- is related to
-
OFBIZ-6404 Allow form/grid widget hyperlinks to be grouped into a single column
- Closed