Apr 29, 2020 07:53 PM
I have the following code:
let table = base.getTable("Volunteers")
let view = table.getView("Grid view")
let currentTableDat = await view.selectRecordsAsync({
fields:["Submitter Slack Email"]
});
console.log(currentTableDat)
No matter how I pass in the fields parameter, the output in the log block is always just the first column ( a timestamp). I’ve tried not passing in any option, passing in the field ID, etc. The query totally ignores any of the parameters. The table is full of data, and table.fields shows the other columns. Any help?
Solved! Go to Solution.
Apr 29, 2020 08:19 PM
You need to get the cell values using the getCellValue()
method.
let records = currentTabledat;
let email = records[0].getCellValue("Submitter Slack Email");
Apr 29, 2020 08:19 PM
You need to get the cell values using the getCellValue()
method.
let records = currentTabledat;
let email = records[0].getCellValue("Submitter Slack Email");
Apr 29, 2020 10:24 PM
Thanks! that pretty much solved it.