I am new in grocery-crud,
I have no idea how to reload grocery-crud grid without refreshing page.
Currently i have relaod all page in ajax
$.ajax({
type:'POST',
url: "<?php echo base_url() ?>user/user_function/"+dash_id,
success: function(responses) {
location.reload();
}
});
Any ideas what I need to do to make this work ? Thanks!