Created
June 21, 2022 14:27
-
-
Save moxet/3c3eb83dee1d9e95bfa4bf045e554467 to your computer and use it in GitHub Desktop.
Crocoblock JetTable Builder Export to CSV, PDF, Excel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/v/dt/dt-1.11.2/datatables.min.css"/> | |
<script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.js"></script> | |
<script type="text/javascript" src="https://cdn.datatables.net/1.12.1/js/jquery.dataTables.min.js"></script> | |
<script type="text/javascript" src="https://cdn.datatables.net/buttons/2.2.3/js/dataTables.buttons.min.js"></script> | |
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jszip/3.1.3/jszip.min.js"></script> | |
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.53/pdfmake.min.js"></script> | |
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.53/vfs_fonts.js"></script> | |
<script type="text/javascript" src="https://cdn.datatables.net/buttons/2.2.3/js/buttons.html5.min.js"></script> | |
<script type="text/javascript" src="https://cdn.datatables.net/buttons/2.2.3/js/buttons.print.min.js"></script> | |
<script> | |
jQuery(document).ready(function($) { | |
$('.jet-dynamic-table').DataTable( { | |
dom: 'Bfrtip', | |
buttons: [ | |
'copy', 'csv', 'excel', 'pdf', 'print' | |
] | |
} ); | |
}); | |
</script> |
Muchas gracias por el código, como se puede hacer que solo se muestre los botones de exportar, copiar , pdf, excell y print?
Muchas gracias por el código, como se puede hacer que solo se muestre los botones de exportar, copiar , pdf, excell y print?
<script>
jQuery(document).ready(function($) {
$('.jet-dynamic-table').DataTable( {
dom: 'Bfrtip',
buttons: [
'copy', 'excel', 'pdf'
]
} );
});
</script>
Thank you very much for answering.
I have explained myself poorly. What I want is for only the buttons to be shown, the pagination, search and sorting not to be shown.
@JuanCar29 you have to remove f from Bfrtip
check this https://stackoverflow.com/questions/61200330/what-is-the-bfrtip-on-datatable
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hola gracias por el aporte, pero como podría pasarlo a español. Gracias