我使用DataTables 1.10+和Buttons的列可見性模塊(colvis),並希望在可摺疊的子行中使用隱藏列,採用相同的方式響應擴展在'詳細信息'行中。儘管我不想要責任感。DataTable在子行中的隱藏行(如響應式擴展名)
是否可以僅使用響應式插件的'child-row'功能或根據窗口寬度「關閉」響應度自動列可見性調整?
簡而言之:
colvis
需要允許用戶顯示和隱藏列- 隱藏的列應在collapible「孩子行」
- 表不應該響應(使用響應 擴展)
我的數據表初始化:
var oTable = $('#table_sd').DataTable({
'dom': 'Rrilp<"clear">ti<"clear">lp',
'processing': true,
'deferRender': true,
'Paging': true,
'pagingType': 'input',
'displayLength': 25,
'lengthMenu': [[10, 25, 50, 100, -1], [10, 25, 50, 100, 'Alle']],
'ordering': true,
'stateSave': false,
'responsive': false,
'columnDefs': [
{
'targets': [ 1, 2 ],
'orderable': false,
'searchable': false
}
],
'buttons': [
$.extend(true, {}, buttonCommon, {
'extend': 'print',
'text': 'Print',
'exportOptions': {
}
}),
{
'extend': 'collection',
'text': '<i class="icon fa fa-share-square-o"></i><span class="label">Export ...</span>',
'collectionLayout': 'fixed one-column',
'buttons': [
$.extend(true, {}, buttonCommon, {
'extend': 'copy',
'text': 'Copy'
}),
$.extend(true, {}, buttonCommon, {
'extend': 'excel',
'text': 'XLSX (Excel)'
}),
$.extend(true, {}, buttonCommon, {
'extend': 'csv',
'text': 'CSV (Excel)'
}),
$.extend(true, {}, buttonCommon, {
'extend': 'pdf',
'text': 'PDF A4',
'orientation': 'landscape',
'pageSize': 'A4'
}),
$.extend(true, {}, buttonCommon, {
'extend': 'pdf',
'text': 'PDF A3',
'orientation': 'landscape',
'pageSize': 'A3'
})
]
},
{
'extend': 'colvis',
'text': 'Show/Hide columns ...',
'columns': ':gt(5)',
'collectionLayout': 'fixed three-column',
'prefixButtons': [
{
'extend': 'colvisGroup',
'text': '<strong>All</strong>',
'show': ':hidden'
},
{
'extend': 'colvisGroup',
'text': '<strong>Default minimal</strong>',
'show': ':lt(7)',
'hide': ':visible:not(:lt(7))'
}
]
}
],
'colReorder': {
'realtime': false,
'fixedColumnsLeft': 6
}
});
感謝
我正在做筆記這裏看一看解決這個在未來數天。我不認爲這個問題看起來很難。我很驚訝沒有人嘗試過。 – TylerY86
請記住,Colvis現在已經退役,並替換爲按鈕的列可見性模塊https://datatables.net/extensions/colvis/ – vitomd
是的,我編輯的問題更簡潔。我正在使用新的1.10+ API。 – chimos