Hello, I'm a beginner with grocery-crud and I'm looking for some guidance on how to reload the grid without refreshing the entire page.
Currently, my approach involves reloading the entire page using AJAX like this:
$.ajax({
type:'POST',
url: "<?php echo base_url() ?>user/user_function/"+dash_id,
success: function(responses) {
location.reload();
}
});
If anyone has any suggestions or insights on how to achieve a grid reload without a full page refresh, I'd greatly appreciate it. Thank you!