Thanks allan.
I have used the same to update the cell value, but it is not updating. here is my code
priceDT.cell(cell.index().row, 23 ).data(25).draw();
priceDT.fixedColumns().update();
After this, the value in the cell is not changed to 25. It is showing the old value.
Looks like it works in this example that I created. It also works without fixedColumns().update(). Maybe you can update the example with your code to show the issue.
Answers
cell().data()
will update the cell. Then callfixedColumns().update()
to refresh the fixed column display.Allan
Thanks allan.
I have used the same to update the cell value, but it is not updating. here is my code
priceDT.cell(cell.index().row, 23 ).data(25).draw();
priceDT.fixedColumns().update();
After this, the value in the cell is not changed to 25. It is showing the old value.
Looks like it works in this example that I created. It also works without
fixedColumns().update()
. Maybe you can update the example with your code to show the issue.Kevin