I have a large table with about 1000 rows. If I try to get selected rows from the table, it takes more than 30 seconds. Is there way to speed up the process? I use JXA.
selected = table.rows.whose({selected:true})()
names = ""
for (r in selected) {
names+=", "+selected[r].uiElements[1].name()
}
console.log(names)
Is there a faster way? Thanks!