How to correctly iterate cells and rows of dynamically created datatable with columns?
How to correctly iterate cells and rows of dynamically created datatable with columns?
msm_baltazar
Posts: 59Questions: 22Answers: 0
hello friends,
I have a datatable with dynamically created columns. There is an html input box in the cells of this datatable. I want to check the value in each row of the datatable and in the cells of each row. How can I iterate this correctly?
Thanks in advance for your help.
This question has an accepted answers - jump to answer
Answers
You can use the
rows().every()
to iterate all the rows. In the loop you can get the data for the row.Kevin
I did it as below. thank you so much.