MessageContainer.addInfoMessageText

Adds an info message that will be displayed to the user, sourced from an existing text. This method supports the addition of a message from a configured text and supports multiple languages and the substitution of variables. Messages are removed automatically by the system once they have been displayed to the user.

Any accessible text can be displayed as a message; this includes local texts defined using the form/component text editor and linked texts which exist in linked texts files. Within each text, a substitutable variable is identified by &&. Any substitutable variables in the text are replaced with values in the replaceParameters parameter (see example below).

When stopProcessing is true, all processing for the current event is stopped immediately and the page is redisplayed to the user. When stopProcessing is false, processing continues normally.

Messages can be displayed either locally to the message owner (a control or page) or at another location on the same page represented by a Message Control. For further information on the location and styling of messages, please see the online documentation available from the Help menu, search on message options, then follow the link to Message Options For Controls.

Javascript example:

 event.owner.addInfoMessageText(texts.Txt29, [fields.ORDER_TYPE.value, fields.CUSTOMER_TYPE.value], true);
 
If text Txt29 in language EN contains text:
Order && updated for customer &&
this might be displayed as:
Order 1234567 updated for customer Acme Enterprises

Parameters

Text text,  UNKNOWNjava.lang.String[]  replaceParameters,  boolean  stopProcessing,