creates an alert box
config | object | the text of the alert message |
promise | the result of user interaction |
$$("ssheet").alert({
text:"Range is not selected!"
}).then(() => {
// when the user clicks OK, do something
});
Back to top