Search code examples
tabulator

How to cycle through table rows programmatically


I need to process the data from a table, what is the best way to step through the rows of a table programmatically?


Solution

  • const rows = table.getRows();
    console.log('rows', rows);
    

    Returns an array and you can iterate over it