JavaScript – airtable nodejs example – 002.
In the last tutorial, I used a default template project and this is shown on the source code like this:
1 | table.select({maxRecords:3,view:'All tasks'}).firstPage(); |
If you use a grid view, see the next image: then the source code for selection is this:
1 2 3 | table.select({ view: 'Grid tasks view' }).firstPage(); |
If you want to use javascript, it needs to have… Continue Reading JavaScript – airtable nodejs example – 002.