eachRow

iterates over all rows in the table

void eachRow(function handler);
handlerfunctionthe handler function

Example

$$("table").eachRow( 
    function (row){ 
        console.log( dtable.getItem(row).title )
    }
)

Details
  • Basically, the order of iteration is the order in which rows were added to the table but not necessarily so.
  • If the table loads data dynamically, just the already parsed rows will be iterated.
  • If you apply filtering to the table, only visible rows will be iterated.
  • Only rows in opened branches are included into iteration.
Back to top
If you have not checked yet, be sure to visit site of our main product Webix js framework and page of tree table product.