I am using DataTables and I initialize the table with
$(document).ready(function() {
$('#example').dataTable( {
stateSave: true
} );
} );
I populate my table dynamically using $('#example').row.add(...)
When I reload or revisit my page, the table is empty again. Is stateSave supposed to work with dynamically inserted row entires?