Datatable with Footable
Datatable with Footable
I really need to know how I can use footable with datatable pagination. I've tried all different method to make this work...
When I paginate, the table expand to the full columns and not footable.
[code]
"aoColumns": [
null,
null,
{"bSortable": false},
{"bSortable": false}
],
"fnPreDrawCallback": function(oSettings){
contactFootable();
},
"fnRowCallback": function(oSettings){
contactFootable();
},
"fnDrawCallback": function(oSettings){
contactFootable();
},
"oLanguage": {
[/code]
[code]
contactFootable = function(){
if(jQuery().footable){
$('#contactsData').footable().trigger('footable_resize');//.trigger('footable_redraw')
}
}
[/code]
Any help?
When I paginate, the table expand to the full columns and not footable.
[code]
"aoColumns": [
null,
null,
{"bSortable": false},
{"bSortable": false}
],
"fnPreDrawCallback": function(oSettings){
contactFootable();
},
"fnRowCallback": function(oSettings){
contactFootable();
},
"fnDrawCallback": function(oSettings){
contactFootable();
},
"oLanguage": {
[/code]
[code]
contactFootable = function(){
if(jQuery().footable){
$('#contactsData').footable().trigger('footable_resize');//.trigger('footable_redraw')
}
}
[/code]
Any help?
This discussion has been closed.
Replies
Allan