Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
Hi all,
How to get the output in string from infotable in loop, based on index values.
Thank you
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);
});