Skip to main content

1 reply

15-Moonstone
May 23, 2022

I understand that you are asking how to access the data of individual rows of a infotable when using forEach()? Basically you do it like for any other object.

 

// Assume your infotable "myInfoTable" has the following columns:
// id, username, age

myInfoTable.rows.toArray().forEach(row => {
 // The "row"-object contains the information for the individual row
 logger.info("id: " + row.id);
 logger.info("username: " + row.username);
 logger.info("age: " + row.age);
});