Is there a faster way to update cells?
Is there a faster way to update cells?
I can get the data() object on the table and do statements like
data[x][y] = 123;
but it doesn't actually update the table. Using the table.cell(row, col).data(123)
method of updating cells is insanely slower when trying to update about 600 records. It ends up being around 1 second per 100 records. Moreover, the column I'm updating is hidden so the UI doesn't even need to change.
Is there a faster way to update cells than using table.cell(row, col).data(123)
?
I've asked the same question here on SO so feel free to answer it there for points if you care.
Answers
That's very slow! Can you link to a test case showing the issue please?
Allan