You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
777 B
JavaScript
22 lines
777 B
JavaScript
// -------------------------------
|
|
// Initialize Data Tables
|
|
// -------------------------------
|
|
|
|
$(document).ready(function() {
|
|
$('#example').dataTable({
|
|
"language": {
|
|
"lengthMenu": "_MENU_"
|
|
}
|
|
});
|
|
$('.dataTables_filter input').attr('placeholder','Search...');
|
|
|
|
|
|
//DOM Manipulation to move datatable elements integrate to panel
|
|
$('.panel-ctrls').append($('.dataTables_filter').addClass("pull-right")).find("label").addClass("panel-ctrls-center");
|
|
$('.panel-ctrls').append("<i class='separator'></i>");
|
|
$('.panel-ctrls').append($('.dataTables_length').addClass("pull-left")).find("label").addClass("panel-ctrls-center");
|
|
|
|
$('.panel-footer').append($(".dataTable+.row"));
|
|
$('.dataTables_paginate>ul.pagination').addClass("pull-right m0");
|
|
|
|
}); |