I wrote a code to update data in multiple rows using the rowId as selector. Is there a way to optimize this code for speed?
changedData.forEach(i => {
table.row("#" + i).data(i)
})
table.draw()
I'm thinking I should not redraw the whole table but only the changed rows. However, I'm not sure how to do that in the most efficient way using the datatables api.