web-dev-qa-db-fra.com

Comment changer le texte du bouton sweetalert?

Je souhaite modifier le bouton "OK" avec les options "Sélectionner le patient" et "Annuler" pour "Vitesse rapide". Comment puis je faire ça?

swal({
  text: "Start new case by",
  buttons: true,
  confirmButtonText: "Select Patient?",
  cancelButtonText: "Speed Case?",      
});
4
Dip Girase
swal({
  text: "Start new case by",
  buttons: ["Select Patient?", "Speed Case?"],
});
6
RohitIUC

voici la réponse 

 swal({
            title: "Are you sure?",
            text: "you want to Cancel Operation!",
            type: "warning",
            showCancelButton: true,
            confirmButtonColor: '#DD6B55',
            confirmButtonText: 'Yes, I am sure!',
            cancelButtonText: "No, cancel it!",
            closeOnConfirm: false,
            closeOnCancel: false
        },

espérons que cela fonctionnera pour vous

3
user8718405
swal({
    title: 'Are you sure?',
    text: 'Once deleted, you will not be able to recover this imaginary file!',
    icon: 'warning',
    buttons: true,
    dangerMode: true,
    buttons: ['yes, forsure', 'no, thanks']
});
0
Yamen Ashraf