0
我創建使用具有自舉數據表與此指令數據表顯示在報頭
var bTable = $('#example2').DataTable({
language: { url: 'assets/plugins/datatables/i18n/Spanish.json' },
processing: true,
fixedHeader: true,
serverSide: true,
responsive:true,
ajax: "modulos/estados.data.php",
columns: [
{ data: "id561" },
{ data: "des561" },
{ data: "accion561" },
{ data: "res561" }
],
order: [[ 1, "asc" ]],
columnDefs: [
{
targets : 0,
searchable: false,
render: function (data, type, row)
{ return row.id561 }
},
{
targets : 1,
searchable: true,
render: function (data, type, row)
{ return data }
},
{
targets : 2,
searchable: false,
render: function (data, type, row)
{ return data }
},
{
targets : 3,
orderable: false,
searchable: false,
render: function (data, type, row)
{ return data }
}
]
});
所示的其上顯示標題的順序圖標兩倍
問題是隻激活Bootstrap css,如果我用jquery它的作品
感謝您的幫助!
這不正確的問題。表格元素是
@MartinVarta,請參閱[本示例](http://jsfiddle.net/rhjLbgyw/)的問題,這是非常普遍的問題。當我在我的答案中提到時,除了包含其他文件,還包括'jquery.dataTables.min.css',也會出現這個問題。請列出您包含的文件或刪除'jquery.dataTables.min.css',看看是否能解決問題。 –
相關問題