creates a confirm box
config | object | the text of the confirm message |
promise | the result of user interaction |
$$("ssheet").confirm({
text:"There is no undo, are you sure?"
}).then(function(result){
// when the user clicks OK, do something
});
Back to top