no js na condição de confirmado no sweetalert vc chama uma blank com o código lookup, via ajax.
bib externa func.js
function sa2ConfirmAjax(title, text, confirmBtnText, scriptName, value, debug = 0, text2 = '', sFunc) {
swal.fire({
title: title,
text: text,
icon: 'question',
showCancelButton: true,
confirmButtonColor: '#3085d6',
cancelButtonColor: '#d33',
cancelButtonText: 'Cancelar',
confirmButtonText: confirmBtnText
}).then((result) => {
if (result.value) {
// alert('vai executar ajax');
ajax(scriptName, value, sFunc, debug);
} else {
if (text2) {
swal.fire({
icon: 'warning',
title: text2,
showCloseButton: true,
timer: 1500
});
}
}
})
}