mirror of
https://gitee.com/AiShiYuShiJiePingXing/bigscreen.git
synced 2026-01-21 05:40:35 +08:00
19 lines
474 B
JavaScript
19 lines
474 B
JavaScript
/*
|
|
Template Name: Stexo - Responsive Bootstrap 4 Admin Dashboard
|
|
Author: Themesdesign
|
|
Website: www.themesdesign.in
|
|
File: Datatable js
|
|
*/
|
|
|
|
$(document).ready(function() {
|
|
$('#datatable').DataTable();
|
|
|
|
//Buttons examples
|
|
var table = $('#datatable-buttons').DataTable({
|
|
lengthChange: false,
|
|
buttons: ['copy', 'excel', 'pdf', 'colvis']
|
|
});
|
|
|
|
table.buttons().container()
|
|
.appendTo('#datatable-buttons_wrapper .col-md-6:eq(0)');
|
|
} ); |