Number of row
Number of row
benoit64
Posts: 3Questions: 1Answers: 0
Hello there
I want a statement that returns the number of rows in a data table?
Which use it?
This discussion has been closed.
Answers
Use info and set it to true. You'll get the number of rows that are currently displayed as well as the total number in the entire table.
Use
page.info()
to get information about the data contained in a table. Or you could userows()
(table.rows().eq(0).length
).Allan
tank you