@kthorngren and @colin I am using below way to get data from server. After column reorder change applied if go to another pagination page or else the table header is looking after reorder column order. But table body data is looking default order from ajax. So i want a solution for after ajax call i want to customize data order to column reorder change order. How can do it?
Please help me. Thanks.
$('#example').dataTable( {
"ajax": {
"url": "data.json",
"type": "POST"
}
} );
The only suggestion I have is to look at the browser's console for errors. Without seeing the problem and the code it will be difficult to guess what the problem might be.
Answers
@kthorngren and @colin I am using below way to get data from server. After column reorder change applied if go to another pagination page or else the table header is looking after reorder column order. But table body data is looking default order from ajax. So i want a solution for after ajax call i want to customize data order to column reorder change order. How can do it?
Please help me. Thanks.
$('#example').dataTable( {
"ajax": {
"url": "data.json",
"type": "POST"
}
} );
The only suggestion I have is to look at the browser's console for errors. Without seeing the problem and the code it will be difficult to guess what the problem might be.
Kevin