I am using this code to delete a row .. my code is working fine i am using datatables where in every row there is a button delete in front of them ..what I want is when a confirm dialog appears and the user press ok then it deletes the row and show the remaining rows in the datable without refresh .. i mean at that time if I press ok button it successfully deletes the row ..but the delete row remains there in the table until I refresh the page and then it removes from the table .. is that possible ?.. because I dont want from user that he after pressing delete has to refresh to see whether the row is deleted or not ..
this is my view code usernames
<td> <a href = "employesController/deleteEmploye/<?php echo $row->emp_id ?>"
class = "deletes" >Delete</td>
my jquery code
<script type='text/javascript'>
$(document).ready(function(){
$(".deletes").click(function(e){
var r = confirm("are you sure you want to delete this");
if (r==true){
$this = $(this);
e.preventDefault();
var url = $(this).attr("href");
$.get(url, function(r){
if(r.success){
$this.closest("tr").remove();
}
})
}else {
return false;
}
});
});
my controller
function deleteEmploye($empid){
$id = $empid;
$this->load->model('employesModel');
$query = $this->employesModel->deleteEmploye($id);
return json_encode(array("success" => true));
model
public function deleteEmploye($id){
$this->db->where('emp_id', $id);
$query = $this->db->delete('employees');
return $query->result();
}
successcallback of$.ajaxis passed the data returned from the AJAX call as its first parameter. Are you sure you are returning a JSON object with asuccessattribute that evaluates to true? Also, you are leaking$thisas a global. Addvar. – Martín Valdés de León Jan 19 at 8:13