Page tree

Versions Compared

Key

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

...

Code Block
languagejs
titleExample modal default OK button
akioma.swat.Message.message({ type: "success", text:"DatensatzInformation erfolgreichwas gespeichertsaved", modal: true});
Code Block
languagejs
titleExample (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' });
Code Block
languagejs
titleShorthand for Non-Modal (Notification) messages
akioma.notification({ type: 'info', text: 'Some modal text content here' });
Code Block
languagejs
titleOther samples
// non-modal, notifications
akioma.notification({ type: "success", text:"success message!" });

akioma.notification({ type: "error", text:"success message!" });

akioma.notification({ type: "info", text:"success message!" });

akioma.notification({ type: "warn", text:"success message!" });

// modal messages different types

akioma.message({ type: "success", text:"You did it!" });

akioma.message({ type: "info", text:"You did it!" });

akioma.message({ type: "warning", text:"You did it!" });

akioma.message({ type: "error", text:"You did it!" });

akioma.message({ type: "question", text:"You did it!" });