How to reload the selected tab? Actually I have problem with reloading part. When I add my data I\'ll successfully saved in datatable but in id field in database it shows pr
To reload the table data from Ajax data source, use the following function:
dataTable.ajax.reload()
Where dataTable is the variable used to create the table.
dataTable
var dataTable = $('#your_table_id').DataTable({ ajax: "URL" });
See ajax.reload() for more information.