Scroller plugin while using TableTools and jQuery UI

Scroller plugin while using TableTools and jQuery UI

bgenetobgeneto Posts: 8Questions: 1Answers: 0

What is the proper way to config a DataTable while using TableTools and jQuery UI? I'm trying the below settings but it is not working. Every time I add the 'S' control element in DOM I've got empty rows saying "No matching records found" (but curiously bottom info says "Showing NaN to 20 of 20 entries"). In fact, even without using TableTools I've got those messages! Is there any other alternative to speed up server-side processing (ajax) processing in my case? TIA.

"dom": 'T<"clear">lfrtipS', // tried also: frtiS
"lengthChange": false,
"sRowSelect": "multi",
"tableTools": {
"aButtons": [ "select_all", "select_none" ]
},
"deferRender": true,
"bSortClasses": false,
"scrollY": 300,
"scrollCollapse": true,
"paging": true,
"jQueryUI": true,
"processing": true,
"serverSide": true,
"ajax": {
"type": "POST",
"url": "inc/ajax/playlist-dt.ajax.php"
}
});


<link rel="stylesheet" href="libs/css/dataTables.jqueryui.css" />
<link rel="stylesheet" href="libs/css/dataTables.scroller.min.css">





Answers

  • bgenetobgeneto Posts: 8Questions: 1Answers: 0

    In summary: Does scroller plugin work with TableTools and jQuery UI tabs?

This discussion has been closed.