Change the google form source to save it in google environment.

Is it possible to edit Google Forms to allow validation of data and use some javascript or similar tools to give an expanded view of the form. Making sure the form is not deleted from google or at least it can transfer data to google spreadsheet.

+7
source share
3 answers

It can be done, but it’s not a very “clean” way to do it. You can create a form with a Google form and use the HtmlService for analysis via html with a link, and from there you can add more html / javascript to it. This trick is possible at the moment, but if there is any change in the structure of the Google Form html, it will break it.

+5
source

Sort ... You can create a very complex form using Google Apps Script. For someone with experience and a library, this can be as short as an hour. If you start from scratch, it will take significantly more time (the learning curve for new Apps Script may be slightly higher).

We’ve found that if we deliver custom forms to people in our domain, Google Apps Script works great. If we need to collect information from the general public and collect it using the regular Google form, this also works great. However, if we need to collect information using Script applications from people outside our domain, we use a different service (not Google).

Good luck.

+1
source

Ok, I figured it out. You can just take the section inside ... and paste it into your web page, and it will still interact with its Google data source, a spreadsheet. After that, you can use any web tool to edit the form itself, such as html, javascript, ajax, etc. But there are a few things you should know about this method:

  • If you want to add a new field, you will need to add this to the actual Google form, and then copy again ... and repeat all the work that you did on it before. So this is a bad method if you know that you will be adding new fields all the time.

  • Make sure that you don’t change any terms related to Google, such as tag class names, action parameter forms, etc. I think that the work that you can do on it, which is quite acceptable, is those that allow changing the appearance of the form and its periphery.

+1
source

All Articles