In this article, we will see how to remove/hide columns while export data in datatables in laravel 8. When we are using jquery datatable for displaying data in datatable and exporting datatable information into PDF, Excel, or CSV we might exclude or hide some columns. So, we will give you a demo of how to remove/hide columns while exporting data in datatables in laravel 8 using jQuery.
So, let's see, datatables export only visible columns, exclude columns from export in jquery datatables and remove columns when exporting data when using jquery.
In this example the copy button will export column index 1 and all visible columns, the Excel button will export only the visible columns and the PDF button will export column indexes 1, 2, and 4 only and other datatable hide columns.
Column visibility controls are also included so you can change the columns easily and see the effect of the export options.
$(document).ready(function() {
$('#demo').DataTable( {
dom: 'Bfrtip',
buttons: [
{
extend: 'copyHtml5',
exportOptions: {
columns: [ 1, ':visible' ]
}
},
{
extend: 'excelHtml5',
exportOptions: {
columns: ':visible'
}
},
{
extend: 'pdfHtml5',
exportOptions: {
columns: [ 1, 2, 4 ]
}
},
'colvis'
]
} );
} );
You might also like:
Hey there, fellow developers! If you've been navigating the intricate world of Laravel, you know that optimizing dat...
Jan-03-2024
Hey there! So, you're working with PHP and trying to fetch content from an HTTPS URL using the file_get_contents() f...
Mar-01-2024
In this article, we will see laravel 9 generate PDF from HTML using TCPDF. Here, we will learn how to integrate tcpdf in...
Jan-31-2023
Livewire has revolutionized the way developers build interactive web applications with its real-time capabilities. And w...
Aug-02-2023