fooplugins / FooTable

jQuery plugin to make HTML tables responsive
https://fooplugins.com/plugins/footable-jquery/
Other
2.12k stars 636 forks source link

Refresh table itself Ajax example #870

Open johnnytolengo opened 4 years ago

johnnytolengo commented 4 years ago

Hi, is there any way to refresh the table itself using the ajax example?

```
    var mytable = $('.table').footable({
    "columns": $.get('columns.json'),
    "rows": $.get('rows.json')
});
   mytable.refresh();  <<--------------- is there some function like this? 

Regards