bootstrap - datable

bootstrap - datable

killingeyeskillingeyes Posts: 1Questions: 0Answers: 0
edited May 2012 in General
Hi,

I am trying to use bootstrap with data tables using the css and js provided at following URL
http://datatables.net/blog/Twitter_Bootstrap_2

It adds the records per page and search text box and provides span=6 for both controls but my table is wrapped in a div that has span=10.
It screws the formatting and search box is not aligned properly.

Where in js or css provided in the example can I change the span value for these controls??

Please help!!!

Replies

  • jcreadyjcready Posts: 44Questions: 0Answers: 0
    [code]$(document).ready(function() {
        $('#example').dataTable( {
            "sDom": "<'row'<'span5'l><'span5'f>r>t<'row'<'span5'i><'span5'p>>"
        } );
    } );[/code]
This discussion has been closed.