calls a confirm message box
config | object | the confirm box's configuration |
HTMLElement | the div container of the confirm box |
var box = scheduler.confirm({
text: "Continue?",
ok:"Yes",
cancel:"No",
callback: function(result){
if(result){
scheduler.message("Yes!");
}else{
scheduler.message("No...");
}
}
});
For details about the supported configuration options of a confirm message box, see the Popup Messages and Modal Boxes article.
added in version 6.0
Back to top