Is it possible to combine ColVis with ColReorder?
Is it possible to combine ColVis with ColReorder?
The follwing code has the plugins installed but the problem is that ColReorder doesn't work when I try to put the ColVis. Autofill works all the time.
Thanks!
[code]
$(document).ready( function () {
var oTable = $('#example').dataTable( {
"sDom": 'Rlfrtip',
"sDom": 'C<"clear">lfrtip'
} );
new AutoFill( oTable );
} );
[/code]
Thanks!
[code]
$(document).ready( function () {
var oTable = $('#example').dataTable( {
"sDom": 'Rlfrtip',
"sDom": 'C<"clear">lfrtip'
} );
new AutoFill( oTable );
} );
[/code]
This discussion has been closed.
Replies
$(document).ready( function () {
var oTable = $('#example').dataTable( {
"sDom": 'C<"clear">Rlfrtip',
} );
new AutoFill( oTable );
} );
[/code]
Doing it like you had is like saying `var i=1; i=2;` and expecting `i` to be both 1 and 2 :-)
Allan
[code]
{
"sExtends": "collection",
"sButtonText": 'Save ',
"aButtons": [ "csv", "xls", "pdf" ]
},
{
"sExtends": "pdf",
"sPdfOrientation": "landscape",
"sPdfMessage": "The table was generated with DataTable"
[/code]