Page tree

Versions Compared

Key

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

...

PriorityKeyAkioma Release NotesStatus
MediumSWAT-2689

A new attribute for the Smart Messages is available: showMessageCode, to display or not the message code after the text of the message. Default value is true.

Code Block
languagejs
akioma.swat.Message.getMessageNum("MSGGROUP", 56).then(result => {
      akioma.swat.Message.message({
        type  : "warning",
	    showMessageCode: false, //default true
        text  : result.MessageText,
        modal : true
      });
});
Done
MediumSWAT-2678A new method getMessageType() was implemented to retrieve the message type from the backend, by specifying the message group name and message code.Done
MediumSWAT-2674Default titles for Smart Messages are now translatable from locales files. Also, the default message type for messages, if not defined, is Error. Please check the updated documentation https://help.akiomacloud.de/display/AKDOC/Smart+MessagesDone

...