Can I access cells of a table widget by index (x,y)?
Hey @umi, sorry we do not support this yet. Currently on our table widget we do not have any cell specific behaviour. You can use {{Table1.tableData[].}} to find a cell of interest.
Could you please expand your use-case as it would help us prioritise?
@umi you can access any cell like this using the following snippet
{{ Table1.tableData[y][Object.keys(Table1.tableData[0])[x]] }}
2 Likes