i want to switch places of info and pagination
i want to switch places of info and pagination
nandrai
Posts: 26Questions: 0Answers: 0
how can i switch the info to right and pagination to left? is it possible.
This discussion has been closed.
Replies
you can also apply your own css styles to move those items to certain locations
http://datatables.net/usage/options#sDom
$(document).ready(function() {
$('#example').dataTable( {
"sDom": 'lftpi'
} );
} );
There is an example of using sDom here: http://datatables.net/release-datatables/examples/advanced_init/dom_multiple_elements.html
Allan