Saltar al contenido principal
Version: 4.3.0

Messages

Message elements are messages to show after execute one action. Usually these message are described in the hidden section of the window.

This message element is referenced from target attribute in a button action.

Messages

Estructura Xml

The xml structure of message element is the following:

  <tag source="hidden">
<message id="[id]" title="[message-title]" message="[message-text]" />
... more messages ...
</tag>

Atributos del mensaje

NameTipoUsoDescripciónValores
idStringObligatorioIdentificador de mensaje
títuloStringObligatorioIs the title of messageNota: Puedes usar i18n archivos (locales)
messageStringObligatorioContent of messageNota: Puedes usar i18n archivos (locales)

Ejemplos

  • Show a confirm message before insert new data
...
<tag source="hidden">
<message id="NewMsg" title="CONFIRM_TITLE_NEW" message="CONFIRM_MESSAGE_NEW" />
</tag>
...
<button button-type="button" label="BUTTON_CONFIRM" icon="save" id="ButCnf" help="HELP_CONFIRM_BUTTON">
<button-action type="confirm" target="NewMsg" />
<button-action type="server" server-action="maintain" target-action="UsrNew" />
</button>