I need to display the data table with a loading symbol.
I have more than 10,000 records. I need to display this records in data table. This is the code to display the record in data table ,
$('#example').dataTable({
"oLanguage": {
"sProcessing": "loading......"
}
});
I have more than 10,000 records so that the data table displays a few seconds late. As a result I need to display the loading symbol. How can I achieve this?