SMART datagrid v.1 > Classes > GridBase
Use when visit all rows including the hidden rows of which Parent Row is collapsed state.
In Grid View or Tree View which has done row grouping, GridBase.rowCount and getRow do not include the hidden rows. If call this method, it will call callback function whenever visit all rows including the hidden rows.
// Get all rows.
var rows;
$('#collectRows').click(function () {
rows = [];
grid.visitRows(false, false, function (row, count, i) {
rows.push(row);
});
});