我在我的数据表中创建了一个导出选项,我希望它现在显示在表格下方,它显示在表格上方。谈论可能会在分页旁边的表格末尾显示下载按钮。
$(document).ready(function (){
var table = $('#example').DataTable({
'responsive': true,
dom: 'Bfrtip',
buttons: [
'copy', 'csv', 'excel', 'pdf', 'print'
]
});
// Handle click on "Expand All" button
$('#btn-show-all-children').on('click', function(){
// Expand row details
console.log('Inside click');
table.rows(':not(.parent)').nodes().to$().find('td:first-child').trigger('click');
});
// Handle click on "Collapse All" button
$('#btn-hide-all-children').on('click', function(){
// Collapse row details
table.rows('.parent').nodes().to$().find('td:first-child').trigger('click');
});
$('#btn-show-all-children').trigger('click');
});
这是小提琴https://jsfiddle.net/x5q3anys/
喵喵时光机
相关分类