rows().nodes() not showing invisible columns
rows().nodes() not showing invisible columns
kcodon
Posts: 2Questions: 1Answers: 0
As in this example, I can't seem to access nodes when a column is not visible. How would I do this?
Previously the solution seemed to be using fnGetNodes()
, which has now been replaced by rows().nodes()
which I'm using ... and it isn't working.
This discussion has been closed.
Answers
The
rows().nodes()
method returns thetr
elements, so yes, it would not show the cell nodes which have been removed from the row. You would usecells().nodes()
to get the cell nodes.Allan
Great, thanks. Updated example here