Reputation: 1
I have two datatable having id table1 and table2,By default "No Data Available in Table" text is center, i need to change the text of only table2 to left
Upvotes: 0
Views: 523
Reputation: 3922
Hi you can do it by css
table.dataTable td.dataTables_empty{ text-align:left; }
here is working example
Upvotes: 2