Page tree
Skip to end of metadata
Go to start of metadata

Hello there,

Hotfix 2019.18.3 was applied for the 2019.18 versionĀ of the SWAT Framework. Below is the list of issues that were part of this hotfix.

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.

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.

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

Looking forward to hear your feedback.

Thanks,
AKIOMA Team