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

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

Example 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']});
Shorthand for modal messages
akioma.message({ type: 'info', text: 'Some modal text content here' });
  • No labels