HELP!

flashMessage

This method can be used for Dialog deployment only. xpertrule.flashMessage shows a message at the bottom of the computer screen for either a specified number of seconds or until a subsequent flashMessage is called.

Show a message for a specified number of Seconds:

xpertrule.flashMessage(message, duration);
  • "message" The text of the message to show.
  • "duration" The duration to show the message for (this is seconds, not milliseconds as standard JS).

Show a message (permanently):

xpertrule.flashMessage(message);
  • "message" The text of the message to show.

Hide any currently showing message...

xpertrule.flashMessage();

You can style the message by modifying the .xrui-message-ovl css Class in your custom css

On This Page