Pessoal,
alguem ja aplicou este exemplo com o sweet alert ?
Boa noite Pesssanha! Se vc tem a licença renovada, o scriptcase possui essa opção agora.
Caso não tenha, abaixo vou lhe mostrar como fiz.
No evento onScriptInit, vc faz isso:
?>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@8"></script>
<?php
No evento onde você irá chamar o sweetalert, pode fazer isso:
?>
<script>
$(document).ready(function(){
Swal.fire({
title: 'Sucesso...',
text: 'Texto',
type: 'success',
showCancelButton: false,
confirmButtonColor: '#3085d6',
cancelButtonColor: '#d33',
confirmButtonText: 'OK'
}).then(function(result) {
if (result.value) {
window.location.href = "../app_login";
}
});
});
</script>
<?php
Espero ter ajudado!!
Swal.fire({
title: 'Submit your Github username',
input: 'text',
inputAttributes: {
autocapitalize: 'off'
},
showCancelButton: true,
confirmButtonText: 'Look up',
showLoaderOnConfirm: true,
preConfirm: (login) => {
return fetch(`//api.github.com/users/${login}`)
.then(response => {
if (!response.ok) {
throw new Error(response.statusText)
}
return response.json()
})
.catch(error => {
Swal.showValidationMessage(
`Request failed: ${error}`
)
})
},
allowOutsideClick: () => !Swal.isLoading()
}).then((result) => {
if (result.value) {
Swal.fire({
title: `${result.value.login}'s avatar`,
imageUrl: result.value.avatar_url
})
}
})
Veja os atributos de input em
Aí você move o valor para um campo SC via JavaScript e trata no SC a senha.
- [Thyago Brasil], Haroldo
muito obrigado pela luz no fim do tunel !!!
Vou testar os exemplos acima…
Eu tinha visto no site da sweetAlert2, mas nao sei aplicar com o sc_alert do scriptcase…
$params = array(
‘title’ => ‘Título’,
‘type’ => ‘success’,
‘timer’ => ‘2000’,
‘showConfirmButton’ => false,
‘position’ => ‘bottom-end’,
‘toast’ => true
);
sc_alert(“Inserido com sucesso!”, $params);
Obrigado