0
默認情況下,我的dataTables空表文本左對齊。我如何將文字對齊?如何居中對齊dataTables sEmptyTable文本?
"oLanguage": {"sEmptyTable": "There are no related records"}
默認情況下,我的dataTables空表文本左對齊。我如何將文字對齊?如何居中對齊dataTables sEmptyTable文本?
"oLanguage": {"sEmptyTable": "There are no related records"}
只是改變class
dataTables_empty。
.dataTables_empty{
text-align: center;
}
使用** sClass **添加一個類,然後您可以設置它的樣式。 – Riskbreaker
Riskbreaker的建議的一個例子。 http://stackoverflow.com/questions/2784164/how-do-you-change-the-style-of-cell-in-a-jquery-datatable – MattD