Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Code Block
languagejs
titleSuccess Example success type message from CLAPI (notification non-modal):
akioma.swat.Message.message({
   title: "Success",
   type: "success",
   text: "Datensatz erfolgreich gespeichert",
   expire: 5000
});

...

Code Block
languagejs
titleexample Example (modal custom buttons from array)
akioma.swat.Message.message({ type: "success", text:"Are you sure?", modal: true, buttons: ['Yes','No']});
Code Block
languagejs
titleShorthand for modal messages
akioma.message({ type: 'info', text: 'Some modal text content here' });