Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function hapusData(username) {
- var id = "'"+username+"'";
- swal({
- title: 'Anda Yakin ?',
- text: 'Data ini akan di Hapus !',
- type: 'warning',
- showCancelButton: true,
- confirmButtonColor: '#3085d6',
- cancelButtonColor: '#d33',
- confirmButtonText: 'Yes',
- cancelButtonText: 'No',
- closeOnConfirm: true
- }, function(isConfirm) {
- if (!isConfirm) return;
- $.ajax({
- url : "<?=site_url('panel/users/deletedata')?>/"+id,
- type: "POST",
- dataType: "JSON",
- success: function(data) {
- swal({
- title:"Sukses",
- text: "Hapus Data Sukses",
- showConfirmButton: false,
- type: "success",
- timer: 2000
- });
- reload_table();
- },
- error: function (jqXHR, textStatus, errorThrown) {
- alert('Error Hapus Data');
- }
- });
- });
- }
Add Comment
Please, Sign In to add comment