Skip to main content
Solved

viewAsync - choose a view from a view section?


Forum|alt.badge.img+4

I've run across a script in our base that uses this code:
let view = await input.viewAsync("Pick a view", "Projects");

Our "Project" Table has 100+ views organized by sections, is there any way to modify the code to limit the input choices to a specific view section? (screenshot: Section=Templates) 

if not, are there other ways to limit the input options using a view naming convention or similar? 

Thanks for any input, I've reviewed this documentation, but didn't find any guideance.https://airtable.com/developers/scripting/api/input

 

 

Best answer by AirBenderMarcus

The only filtering for Views I'm aware of is filtering by TYPE (Grid, Kanban, etc...). What may work is creating another table where each Template gets it's own records and where one of the fields is the View ID. Users could then select the template's name from that smaller list of records and the View ID or even just the View name is fed back into the script.

View original
Did this topic help you find an answer to your question?

2 replies

Forum|alt.badge.img+14

The only filtering for Views I'm aware of is filtering by TYPE (Grid, Kanban, etc...). What may work is creating another table where each Template gets it's own records and where one of the fields is the View ID. Users could then select the template's name from that smaller list of records and the View ID or even just the View name is fed back into the script.


Forum|alt.badge.img+4
  • Author
  • Participating Frequently
  • 6 replies
  • January 12, 2023

@AirBenderMarcus 

Thanks for the reply! I hadn't thought about separating the Templates into their own table, but that should work since our base has grown to a point where we probably shouldn't keep templates and live records in the same table.   


Reply