/home/dvjjulio/softtrash/public/js/pages/tablesDatatables.js
/*
* Document : tablesDatatables.js
* Author : pixelcave
* Description: Custom javascript code used in Tables Datatables page
*/
var TablesDatatables = function() {
return {
init: function() {
/* Initialize Bootstrap Datatables Integration */
App.datatables();
/* Initialize Datatables */
$('#users-datatable').dataTable({
"aoColumnDefs": [ { "bSortable": false, "aTargets": [ 1, 4 ] } ],
"iDisplayLength": 10,
"aLengthMenu": [[10, 20, 30, -1], [10, 20, 30, "All"]]
});
/* Add placeholder attribute to the search input */
$('.dataTables_filter input').attr('placeholder', 'Buscar');
}
};
}();