8.
i. Form layout>column properties>Label> set to 'To the left of control''
ii. Plain text attribute > 'Hide Label' ticked & 'Description of the attribute' contains text & selected to be shown underneath the input control
On preview:
The description text does is not placed right under the input control.
It is placed staring from the right of the input control & 1 <br> space underneath the input control.
When label is not hidden, the description is placed properly right under the input control.
I changed the following:
In aware.js and fields.js AwareIM\Tomcat\webapps\AwareIM\aware_ext
// Align under the input element
'<tpl if="labelOnLeft">',
'<td></td>',
'</tpl>',
----> '<td id="{id}-descrUnderEl" class="aw-help-descr-under" colspan="3" style="display:none"></td>,
'</tr>',
TO
// Align under the input element
'<tpl if="labelOnLeft">',
'<td></td>',
'</tpl>',
----> '<tr id="{id}-descrUnderEl" class="aw-help-descr-under" colspan="3" style="display:none"></tr>',
'</tr>',
The description now lies right under the input control
Would like support to verify if this fix is right or not