Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Attribute

Description

RequiredPossible ValuesDefault Value
idUnique identifier, used for finding field label translations.yes
(if txt not defined)
any string-
txtDefault label text, overridden by existing translations.yes
(if
id not defined)
any string-
sizeField size in characters for all text edit fields.nopositive integer-
setThe set attribute forces the contents of the field whenever the panel is reached during navigating, even if the user has chosen a different value when the panel already appeared before.
Variable references in the attribute's value are dynamically resolved during an installation.
notrue | false(the current variable value is used if defined)
defaultThe default attribute is the default for the contents of the field whenever the panel is reached during navigating, in case the underlying field variable is not defined during an installation at this state.
Variable references in the attribute's value are dynamically resolved during an installation.
notrue | false(the current variable value is used if defined) 
omitFromAuto

Whether to omit the field variable's value from being written to the auto-install.xml record initiated from the FinishPanel (if used). Needs to be set on the 'spec' tag.

<field type="password" variable="sql.password">
    <spec omitFromAuto="false">
        <pwd txt="Password:" size="20" />
    </spec>
</field>

notrue | falsetrue for "password" fields, otherwise false

...