can't edit content of fixed column
can't edit content of fixed column
mmontoya
Posts: 84Questions: 27Answers: 4
in FixedColumns
I have the following code that is updating a Row total. It works fine except when the column it is updating is fixed. Can this be resolved so it will update the field in the fixed column?
var newTotal = (sumInputsIn(thisRow.find('.regVal')));
thisRow.find('.regTotal').val(newTotal);
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
With FixedColumns what you would need to do is call the
fnUpdate()
method when the data should be redrawn.This is something that I plan to make automatic in a future version, but currently it needs that manual intervention.
Allan