rows().nodes() not showing invisible columns

rows().nodes() not showing invisible columns

kcodonkcodon 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.

Answers

  • allanallan Posts: 63,680Questions: 1Answers: 10,498 Site admin

    The rows().nodes() method returns the tr elements, so yes, it would not show the cell nodes which have been removed from the row. You would use cells().nodes() to get the cell nodes.

    Allan

  • kcodonkcodon Posts: 2Questions: 1Answers: 0

    Great, thanks. Updated example here

This discussion has been closed.