How to get and set data from/to specific hidden cell if I have only tr?
How to get and set data from/to specific hidden cell if I have only tr?
sergeda
Posts: 42Questions: 16Answers: 0
I've tried to do it like this:
container.Table.cell( $(this).parents('tr').find('td').eq(1) ).data(0).draw();
But this way it counts only visible columns
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
jQuery selectors will only select items that are in the document. For the above code I would suggest using:
i.e. use the ability of
cell()
to use both a row and column selector.Allan
Thank you a lot