this is my first Question, may be hard to understand.
calling $('#classes').trigger('footable_redraw');
, it return the data but hide the table heading and data rows,but when i used $('#classes').trigger('footable_initialize');
its work fine but reduplicate the data .
Ajax method is called on submitting form.
$.ajax({
url : baseurl+'index.php/settings/classes/viewclasses',
success : function(data) {
$('.classestbody').append(data);
$('#classes').trigger('footable_redraw'); }
});
How can i only get my updated data in table after saving any Values by calling submitting for saving ?