Does anyone have a hint how to customize field length in a dialog? A dialog opened via container-dialog. The one that pops on me has items with inadequate sizes.
Thanks
If you explore xml-form-1.6.xsd you will find attributes there for elements like text-line, text-area and all other types. With explanations. (a good XML editor will auto-suggest the elements and attributes as you type, using these .xsd files).
Some examples:
<text-line size="30" maxlength="50" />
<text-area cols="60" rows="6" />
You can also use 'field-layout' element and its sub-elements to set out your form.
(Assuming you don't mean length of a data field in a database).