What I'm trying to get is if an user gets any validation error, then bootbox will show that "this is required". Till now, I've achieved this. But the main problem is that - it closes the window of boot box if the user clicks "Yes" button. I'm getting this because I had to use g async callback in bootbox. For this reason, even after returning false, the bootbox is closing. But I want users to show the box until they press the cancel button. If they click Yes, then it should show the validation, with the box opened. This is my code:
bootbox.confirm({
message: 'Test',
buttons: {
confirm: {
label: 'Yes',
className: 'btn-primary'
},
cancel: {
label: 'No',
className: 'btn-danger'
}
},
callback: async function (result) {
var isValid = $('#form').valid();
if (result && !isValid) {
return false; //it's not working. It's closing the bootbox
}
if (result && isValid) {
/* for this await function I had to use async callback,
without this bootbox is opend
*/
var data = await self.createData();
$.ajax({
type: "POST",
success: function (result) {
},
}).then(function () {
});
}
}
});
How can I resolve this?
It does not appear to me that
bootbox.confirm()has any sort of support forasynccallbacks like you are trying to use. The bootbox closes when your callback returns which will be at the point you hit your firstawaitunless you explicitly returnfalse, but anasynccallback function ALWAYS returns a promise which is not explicitlyfalse. You cannot change that.What you can do is make your callback a regular callback function, not
asyncthat can returnfalseif validation fails and then create an embeddedasyncfunction where you can useawaitthat you call from within that first callback like is shown below. Note that the bootbox will close before your asynchronous code completes so if there are any errors in the bootbox code, you will need to new way to present those errors, perhaps putting up a new bootbox. Here's one way to do this code while still usingawait.Alternatively, you could avoid using
awaitand only use.then()and.catch()and then you wouldn't need this extra layer of function: