Weird count bug under my table

Weird count bug under my table

TheSisbTheSisb Posts: 18Questions: 0Answers: 0
edited October 2012 in General
Here's the weird count bug: https://www.dropbox.com/s/iq4fj94vtz65l75/weird.png

Here's my code:
[code]
cooltable.dataTable({
'sPaginationType': 'full_numbers',
'sScrollY': '225px',
'sScrollX': '100%',
'bScrollCollapse': true,
'bStateSave': true,
'bProcessing': true,
'bServerSide': true,
'sAjaxSource': '/some/url.json',
'sAjaxDataProp': 'demo',
"isDeferLoading": 7,

// Fix position the left column
"fnInitComplete": function () {
new FixedColumns( cooltable );
}

});
[/code]

Any ideas?

Replies

  • allanallan Posts: 63,535Questions: 1Answers: 10,475 Site admin
    You've got server-side processing enabled - so the question is, are you meeting the requirements of server-side processing: http://datatables.net/usage/server-side

    Allan
  • TheSisbTheSisb Posts: 18Questions: 0Answers: 0
    Aha clearly not. That's an excellently formatted page. Thanks allan!
This discussion has been closed.