getRowsCount();
The getRowsCount method returns the number of rows in the table of the express report working area.
Executing the example requires that the HTML page contains the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component). Define the number of rows in the table:
var gridView = expressBox.getDataView().getGridView(); // Output the number of table rows to the console console.log(gridView.getRowsCount());
After executing the example the browser console displays the number of rows in the table:
209
See also: