Disabbling bProcessing messes up table position

Disabbling bProcessing messes up table position

renevanhrenevanh Posts: 13Questions: 1Answers: 0
edited July 2012 in General
When I disable bProcessing, the position of the table will not stay the same in FireFox 13.0.1
This seems to be a result of the non-existence of the dataTables_processing div.
It works fine in Chrome and IE9 though.

I do have a rather complex CSS and layout, but that doesn't seem to be causing trouble in this case.
The table.display container is simply not pushed down by the dataTables_processing div and shows up next to the .dataTables_length container instead of underneath it.

Anyone know this problem and knows how to solve it?

Replies

  • allanallan Posts: 63,542Questions: 1Answers: 10,476 Site admin
    At a guess try adding:

    [code]
    table.dataTable { clear: both }
    [/code]

    to your CSS. If it isn't that - then we'd need a link to a page showing the problem.

    Allan
  • renevanhrenevanh Posts: 13Questions: 1Answers: 0
    Did the trick, thanks!
  • allanallan Posts: 63,542Questions: 1Answers: 10,476 Site admin
    Excellent :-).
This discussion has been closed.