Skip to content
Advertisement

How to fix Google Apps Script Function Running in random sequence

I have a project that will generate a dynamic Listbox from GSheet and it will update the customized form i’ve created in Google Apps Script.

The code will get the input from the URL when it is loaded and generate 2 ListBox first before getting the input data to pre-fill the form.

So the Sequence should be

  1. Generate the Selection for Car Brand
  2. Generate the Selection for Colour
  3. Get the customer data to pre-fill the form

But what I’m getting is whenever I refresh the page, the sequence of function loading is random. Sometimes it is working fine, sometimes it is loading 3 > 1 > 2 or 2 > 3 > 1 or any other random sequence.

Please suggest anyway that we can make sure the sequence is running as per design.

Below is the sample code

Code.gs

JavaScript

CustomerForm.html

JavaScript

Sample Customer Data

ID No Customer Name Customer Area Car Brand Car Colour
1001 Alice IN Toyota Blue
1002 Bob OH Honda Red
1003 Charlie WD BMW Brown

Sample Colour

Colour
Blue
Red
Brown
Green
Yellow

Sample Car Brand

Brand
BMW
Toyota
Honda
Tesla
VW

I’ve tried to use If Else to make sure the ListBox is already populated before running the 3rd function but no luck with that.

Thanks in Advance to anybody that can help in this.

Advertisement

Answer

Because google.script.run runs asynchronously, which means the second one doesn’t wait for the first to return before running. You need to nest them. Then in the html <script> simply run the first only. I’ve moved in_custID outside of the setLocation call so its available to the other functions.

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement