Fokus Bestätigen Sie, dass es in SWAL nicht funktioniertJquery

JQuery-Programmierung
Anonymous
 Fokus Bestätigen Sie, dass es in SWAL nicht funktioniert

Post by Anonymous »

Ich erstelle ein süßes Alarmmodell, dann ein Onclick-Ereignis im Modell öffnen und standardmäßig den Autofokus in der OK-Schaltfläche. Wie geht das? und meine Fall-Abbruchtaste fokussiert sie automatisch

Code: Select all

 function saveCase() {
if (recordedFullSymptoms.length != 0 && cust_preferenceFile.patient.patientId == 0) {
swal({
text: "You can save the case by selecting or creating new patient.",
buttons: {
confirm: {
text: "Ok",
value:1
},
Cancel: {
text:"Cancel",
value:2
}
},
focusConfirm:true,
}).then(value=> {
if(value==1){
getPartialView('PatientList', this);
}
})
}
else
{
swal("Please select atleast one symptom to save case.");
}
}

Quick Reply

Change Text Case: 
   
  • Similar Topics
    Replies
    Views
    Last post