Hi Support,
(Possible Solution)
The attribute <td> shrinks to 100px, the description <td> to 100px.
The problem may be in
Ext.define('AwareApp.Labelable', (aware_full.js Line 3113069)
// Body of the input. That will be an input element, or, from a TriggerField, a table containing an input cell and trigger cell(s)
'<td class="{baseBodyCls} {fieldBodyCls}" id="{id}-bodyEl" role="presentation" >',
By adding colspan="3" into the above <td>, the attribute is no longer cut to 100px and instead uses the full width.
Also, when displaying a 'description' under input or as a pop-up window, the attribute is not cut to 100px.
So the the line 31169 & 31170 code should be:
// Body of the input. That will be an input element, or, from a TriggerField, a table containing an input cell and trigger cell(s)
'<td class="{baseBodyCls} {fieldBodyCls}" id="{id}-bodyEl" colspan="3" role="presentation" >',
If you look at Line 31139, the <td> contains colspan="3"
'<td id="{id}-labelCell" colspan="3" style="width:100%;{labelCellStyle}" {labelCellAttrs}>',
Can you please test it out and confirm if this is the case.
Cheers