...
Code Block | ||||
---|---|---|---|---|
| ||||
akioma.swat.Message.message({
title: "Success",
type: "Success",
text: "Everything went good!",
modal: true,
buttons: {
ok: {
text: 'Ok',
value: 'ok was pressed'
},
cancel: {
text: 'cancel',
value: 'cancel was presses'
}
},
expire : 5000,
moretext: 'More informations here'
}); |
...
Code Block | ||||
---|---|---|---|---|
| ||||
akioma.swat.Message.message({ title: "Warning", type: "warning", text: "Be carefull", modal: true, buttons: ["Continue"], expire : 5000"Cancel"], moretext: 'More informations here' }); |
Code Block | ||||
---|---|---|---|---|
| ||||
akioma.swat.Message.message({
title: "Error",
type: "error",
text: "Something went wrong!",
modal: true,
expire : 5000,
moretext: 'More informations here'
}); |