[JS] select several rows in a table
Hi Guys,
Is there a way to select several rows in a table ? If I pass an array of rows reference to the app.select() method, it fails.
For one that's ok but not for two or more. That rows are next to each other don't chnge a thing.
var t = ....tables[0] //a given reference to a table
app.select([t.rows[1], t.rows[2], t.rows[3]])
//Error > Expected array of objects but received (Row,Row,Row)
app.select(t.rows[1]) works great. But when I want to select several rows it doesn't.
Any advice ?
TIA Loic