Hello,
I just wanted to report a bug with Responsive Datatables.
If you update a cell data as follows;
$('#my-datatable').DataTable().cell(RowSelector, ColumnSelector, 0).data('CHANGED');
It will update cells in the parent row that are visible, but if you have the child row visible it won't update the cell there. Hiding and making the child responsive row visible again shows the updated data.
Seems it's just the visible child responsive cells that are affected.
The data on visible cells of the .parent row do update as seen here;
The data on visible cells of the .child row do not update as seen here until you hide then reshow the child row;
For now in my project I'm just following the update with a manual jquery update of the cell so at least visually it changes as well.
Let me know if any questions,
Cheers