Change your table data using AJAX and then reinitialize your FooTable.

Load more data via ajax

Search: Status: [clear]

First Name Last Name Status
JesusaBittingerStrawberry Sorter15 Sep 1992Suspended
AnnemarieQuarantaGeophysicist11 Dec 1972Active
KaciLandersAccounts Collector18 Nov 1973Disabled
SheniaFurnissReligious Activities Director28 Aug 1987Suspended
ConsueloLandaFresco Artist28 Jul 1963Active

Refresh After Populating By Ajax

You can easily tell Footable to redraw by triggering the footable_redraw event on the table:

$('.get_data').click(function() {
	$.ajax({
		url : '/some/api',
		success : function(data) {
			$('table tbody').append(data).trigger('footable_redraw');
		}
	});
});