30 lines
671 B
Python
30 lines
671 B
Python
$(function () {
|
||
$('#sampleTable').DataTable();
|
||
});
|
||
|
||
function delete_result(nid){
|
||
const data = {
|
||
"delete": nid,
|
||
};
|
||
swal({
|
||
title: "Are you sure want to delete?",
|
||
text: "",
|
||
type: "warning",
|
||
showCancelButton: true,
|
||
confirmButtonColor: "#DD6B55",
|
||
confirmButtonText: "Delete!",
|
||
closeOnConfirm: false
|
||
},
|
||
function(){
|
||
$.ajax({
|
||
type: 'GET',
|
||
url: '/week-passwd-list',
|
||
data: data,
|
||
success: function() {
|
||
location.href = "/week-passwd-list";
|
||
},
|
||
error: function(xhr, type) {
|
||
}
|
||
});
|
||
});
|
||
} |