hi there,
how i can modify the format of the form (default) to custom form by placing the text field first and then the name of the field., see the attachment for mor explanation
please assist.
hi there,
how i can modify the format of the form (default) to custom form by placing the text field first and then the name of the field., see the attachment for mor explanation
please assist.
Hi,
You could try to achieve that with Global CSS styles, and levereging the fact, that attributes are displayed as display: table.
This snippent placed in the Global CSS will turn all attributes, which are inside any group - right to left (see attachment).
.main-panel.group {
direction: rtl;
}
You should be able to use more specific selector, or even javascript to apply it onto a specific element rather than almost whole form.
Hi,
You could try to achieve that with Global CSS styles, and levereging the fact, that attributes are displayed as display: table.
This snippent placed in the Global CSS will turn all attributes, which are inside any group - right to left (see attachment).
.main-panel.group {
direction: rtl;
}
You should be able to use more specific selector, or even javascript to apply it onto a specific element rather than almost whole form.
Alternatively you could use group of fields arranged horizontly.
Remove names by adding:
display: none in atributes style
In first column you inster data, in second just plain text.