I want to you the - SweetAlert for my Website. Now I need to configuration the SweetAlert with this code, so that on klick the "OK" button, it will send via POST formaction="/link/link" post="test=1"
swal({
title: "Are you sure?",
text: "You will not be able to recover this imaginary file!",
type: " warning ",
showCancelButton: true,
confirmButtonColor: "#DD6B55",
confirmButtonText: "Yes, delete it!",
cancelButtonText: " No, cancel plx!",
closeOnConfirm: false,
closeOnCancel: false
}, function(isConfirm) {
if (isConfirm) {
swal("Deleted!", "Your imaginary file has been deleted.", "success");
} else {
swal("Cancelled", "Your imaginary file is safe: ) ", " error ");
}
});
I want to ask you, how can I build it in.
I want to you the - SweetAlert for my Website. Now I need to configuration the SweetAlert with this code, so that on klick the "OK" button, it will send via POST formaction="/link/link" post="test=1"
swal({
title: "Are you sure?",
text: "You will not be able to recover this imaginary file!",
type: " warning ",
showCancelButton: true,
confirmButtonColor: "#DD6B55",
confirmButtonText: "Yes, delete it!",
cancelButtonText: " No, cancel plx!",
closeOnConfirm: false,
closeOnCancel: false
}, function(isConfirm) {
if (isConfirm) {
swal("Deleted!", "Your imaginary file has been deleted.", "success");
} else {
swal("Cancelled", "Your imaginary file is safe: ) ", " error ");
}
});
I want to ask you, how can I build it in.
Share edited Nov 20, 2014 at 10:21 Nabil Kadimi 10.4k2 gold badges55 silver badges60 bronze badges asked Nov 20, 2014 at 9:02 pastuhpastuh 411 gold badge1 silver badge6 bronze badges 5-
i assume you need to alter
if (isConfirm) {}
part. You can make newform
with needed fields, append it tobody
and then useform.submit()
– bigbobr Commented Nov 20, 2014 at 9:05 - Can you write me an example? – pastuh Commented Nov 20, 2014 at 9:21
- @bigbobr He didn't say he has a form. – Nabil Kadimi Commented Nov 20, 2014 at 10:20
-
1
@Nabil Kadimi, in your answer,
post()
function does exactly what i wrote below ;) – bigbobr Commented Nov 20, 2014 at 10:36 - you use ajax in this JS – Mayank Vadiya Commented Oct 5, 2015 at 11:38
4 Answers
Reset to default 5Add you POST request trigger in the swal callback, like this:
swal({
title: "Are you sure?",
text: "You will not be able to recover this imaginary file!",
type: " warning ",
showCancelButton: true,
confirmButtonColor: "#DD6B55",
confirmButtonText: "Yes, delete it!",
cancelButtonText: " No, cancel plx!",
closeOnConfirm: false,
closeOnCancel: false
}, function(isConfirm) {
if (isConfirm) {
swal("Deleted!", "Your imaginary file has been deleted.", "success");
post('/link/link', {test: '1'}); // <<< This is what I added
} else {
swal("Cancelled", "Your imaginary file is safe: ) ", " error ");
}
});
The definition of the function post()
is found here
I implemented Preconfirm method with Promise...
this.$swal({
title: '¿Sure?',
showCancelButton: true,
confirmButtonText: 'Yes',
cancelButtonText: 'No',
showLoaderOnConfirm: true,
preConfirm: function(result) {
return new Promise(function(resolve, reject) {
if (result) {
axios.post('url', {data:data})
.then(function(response){
toastr.success('Succes');
resolve();
})
.catch(function(error){
toastr.error('Error ');
console.log(error);
reject();
})
}
});
},
allowOutsideClick: () => !this.$swal.isLoading(),
})
For pure JS - this would post parameter post
with value post123
var formTest = document.createElement('form');
formTest.setAttribute("method", "post");
formTest.setAttribute("action", "");
var post = document.createElement("input");
post.setAttribute("type", "hidden");
post.setAttribute("name", "post");
post.setAttribute("value", "post123");
formTest.appendChild(post);
document.body.appendChild(formTest);
formTest.submit();
If you want you can use short and nice AJAX calls which require jQuery
try this code, just edit according to your need.
swal({
title: "Are you sure?",
text: "You will not be able to recover this imaginary file!",
type: " warning ",
showCancelButton: true,
confirmButtonColor: "#DD6B55",
confirmButtonText: "Yes, delete it!",
cancelButtonText: " No, cancel plx!",
closeOnConfirm: false,
closeOnCancel: false },
function() {
$.ajax({
type: "POST",
data: {
'data_id': id
},
url: 'http://localhost/project/method',
success: function(data) {
swal("Deleted!", "Your imaginary file has been deleted.", "success");
},
error: function(data) {
swal("Cancelled", "Your imaginary file is safe: ) ", " error ");
}
});
}