Success type message from CLAPI (notification non-modal):
akioma.swat.Message.message({ title: "Success", type: "success", text: "Datensatz erfolgreich gespeichert", expire: 5000 });
Example modal default OK button
akioma.swat.Message.message({ type: "success", text:"Datensatz erfolgreich gespeichert", modal: true});
example (modal custom buttons from array)
akioma.swat.Message.message({ type: "success", text:"Are you sure?", modal: true, buttons: ['Yes','No']});