its posible reload a DataTable from another page?
its posible reload a DataTable from another page?
ImpureRose
Posts: 2Questions: 1Answers: 0
Hi!, I have a datable with some options like edit states, etc... when the user select a new state from a new page (other php), i want to refresh the datatable with the new changes!.
thankx in advance and sry my terrible eng :)
This discussion has been closed.
Answers
Hi!, I dont know if this a clean solution but is working!, i create this function:
function refresh_dt(target){
$('#'+target).DataTable().ajax.reload();
}
to refresh from differents pages
Thanks!