Page tree

Versions Compared

Key

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

Hello there,

A new hotfix (Hotfix 2019.18.3 ) was applied for the 2019.18 versionĀ of the SWAT Framework is out. Below is the list of issues that were part of this releasehotfix.

Improvements

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-2678

A new method getMessageType() was implemented to retrieve the message type from the backend, by specifying the message group name and message code.

Code Block
languagejs
akioma.swat.Message.getMessageType("MSGGROUP", 56).then(msgType=> {
      console.log(msgType);
});
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

...