Apr 17, 2022 09:57 PM
HI Everyone
I am sharing a problem today. Not sure is there any solution out there.
Please response if there any solution for that.
I am trying to get the latest available option for a select able field inside a loop of scripting apps script.
But the problem is script provide me the initial instant of the table if i make any change runtime of the script then it’s not getting the updated instance even though i try to take a new instance of the table .
Below is my code
while(true){
var table= null
table= base.getTable("Table 1")
console.log(table.getField("Status").options.choices)
console.log(await table.selectRecordsAsync())
//trying to make wait the loop
var a= await input.buttonsAsync("test",["test"])
}
And also want to mention that it’s getting the all the new records in new instance of the table or the updated records are also available on it. But the updated fields options are not available in updated instance of the table.
May be it’s a bug from airtable
Solved! Go to Solution.
Apr 19, 2022 05:32 AM
Have the script create the select choice instead of the user. field.updateOptionsAsync()
Apr 18, 2022 04:59 PM
I don’t think that it’s a bug. It’s possible that Airtable “freezes” the field configuration (as far as the script is concerned) during script execution to prevent possible errors from occurring.
Could you explain more about your desired use case? Why do you want to change the field configuration while a script is running?
Apr 18, 2022 05:27 PM
I think that the scripting environment gets a copy of the base
object when the script is run, and the base
object is not updated unless the script itself modifies the base schema.
This is different from a custom app, where the custom app can watch for changes to the base schema.
Apr 18, 2022 10:29 PM
Thanks for your response.
I am try to take input from use and then after checking does the value exist or not in “Select able” fields
if not exist then user will add the value and test again. That was the use case.
I understand keep it freezing but i am sure script will through an error if you change anything table in runtime of the script.
If they do so then what’s the use of keep it freezing.
Can you please mention anyone from airtable so that they can explain the point of view
Thanks
Noor
Apr 18, 2022 10:32 PM
Thanks you @kuovonne for your response
Yes it seems like the take the schema object copy on the stating of script run and don’t update it overtime even you re-query the object
Thanks
Noor
Apr 19, 2022 05:32 AM
Have the script create the select choice instead of the user. field.updateOptionsAsync()
Apr 20, 2022 02:32 AM