Simone
06/18/2023, 12:31 AMfunction showMessage() {
swal({
title: "",
html: 'This will trigger some updates</b>',
type: "warning",
showCancelButton: true,
confirmButtonColor: "##EF5350",
confirmButtonText: "Yes, Proceed",
cancelButtonText: "Cancel",
reverseButtons: true
},function(isConfirmed) {
alert(isConfirmed)
if (isConfirmed) {
alert($(".openStandings").attr('data-href'));
$.ajax({
type: "POST",
url: $(".openStandings").attr('data-href'),
success: function(data) {
alert(data);
if (data.toLowerCase().indexOf("error") >= 0) {
swal({
title: "Oops",
text: data,
type: "error",
showCancelButton: false,
confirmButtonColor: "##EF5350",
confirmButtonText: "OK",
closeOnConfirm: true
});
} else {
swal({
title: "Great",
text: data,
type: "success",
showCancelButton: false,
confirmButtonColor: "##EF5350",
confirmButtonText: "OK",
closeOnConfirm: true
});
}
}
})
}
})
}
mrtom
06/18/2023, 2:18 AMMichael Schmidt
06/18/2023, 12:52 PMSimone
06/18/2023, 2:51 PM