Create a Dependent Dropdown Form for Google Sheets - Webapp

Sdílet
Vložit
  • čas přidán 28. 08. 2024

Komentáře • 2

  • @arturkru3574
    @arturkru3574 Před 3 měsíci +1

    Thanks for the detailed material. Can you show me how to clear the dropdown form after clicking submit?

    • @practicalsheets
      @practicalsheets  Před 3 měsíci

      Thank you for commenting!
      You could try this
      function sendDataToGAS(form){
      event.preventDefault()
      google.script.run.sendFormDataToSheets(form)
      document.getElementById("email").value=""
      document.getElementById("make").value=""
      document.getElementById("model").innerHTML=""
      }
      Regards!