css - jquery dataTable change pages -
everyone! need change pagination in datatable. got 
and need change that

i tried change css this
.datatables_wrapper .datatables_paginate .paginate_button.disabled{ margin-left:100px; } but failed. have got ideas? help!
if have table pagingtype full_numbers
var table = $('#example').datatable({ pagingtype: "full_numbers" }); you can hide first , prev buttons way
$('#example').on('draw.dt', function() { $('.paginate_button.previous,.paginate_button.first').hide(); }); and looks image above - demo -> http://jsfiddle.net/n5dyy8px/
Comments
Post a Comment