Browse Length Editor

Hello,

Why the browser UI editor columns have different lengths (in comparison with Edit FieldGroup rows - same length).
How can I set Browse UI columns length?
image
Look for instance Date length vs Amount length.

Hi,

You can set explicit width for columns, otherwise, they will adjust by the content (see Screen Layout Rules). For instance:

<groupTable id="clientsTable"
            width="100%">
    <columns>
        <column id="active"
                width="150"/>
        <column id="title"
                width="200"/>
        <column id="date"/>
    . . .
</groupTable>

The settings of Table columns are saved in DB as user settings. Thus you have to reset them if you change widths in XML (or disable settings using settingsEnabled attribute). In order to reset user settings, you can remove records from SEC_USER_SETTING table by name of the screen:

delete from SEC_USER_SETTING where NAME = 'columnwidth$Client.browse'

Thank you, Olga.
Nevertheless I have a grid - one row, two columns(width - auto), left a fieldGroup (width -auto), right a table (width - auto). Why in this case I have warning: Component ‘contactTable’. Table should not have undefined width?
image