$.get("run.php", QueryString, function(data)
{
[...]
$('table.dataTable').InitDataTables(TableName, null, oQueryParams);
[...]
}
$.fn.InitDataTables = function( TableName, SelectAry, oQueryParams ) {
[...]
oGlobalData.oTable = $("#"+TableName).dataTable( {
"aLengthMenu": [[25, 50, 75, -1], [25, 50, 75, "All"]],
"iDisplayLength": 25,
"bJQueryUI": true,
"bAutoWidth": false,
"bDeferRender": true,
"sDom": '<"H"fp<"TableName"><"BTNS">>t<"F"li>'
});
[...]
}
My stats are 16 seconds for 290 records.
It looks like you're new here. If you want to get involved, click one of these buttons!
Get useful and friendly help straight from the source.