I created a new google sheet for collecting user information. In my sheet script editor, I created this form: https://script.google.com/macros/s/AKfycbz6uGmXfSiXg4lYseeX0IN7Qv_9eM4eN9knUtBm5Co/exec
The above form has a multiple choice question that I need to auto populate using a specific column in the attached spreadsheet
I used he below code, but for some reason the update function is not reading the form options or something
When I run the update form function, it gives "TypeError: Cannot find function getItemById in object"
Is there any solution to update the form options by the sheet column
function doGet() {
return HtmlService.createTemplateFromFile('form.html')
.evaluate() // evaluate MUST come before setting the Sandbox mode
.setXFrameOptionsMode(HtmlService.XFrameOptionsMode.ALLOWALL);
}
function updateForm(){
// call your form and connect to the drop-down item
var form = ("https://script.google.com/macros/s/AKfycbz6uGmXfSiXg4lYseeX0IN7Qv_9eM4eN9knUtBm5Co/exec");
var namesList = form.getItemById("890244015").asListItem();
// identify the sheet where the data resides needed to populate the drop-down
var ss = SpreadsheetApp.getActive();
var names = ss.getSheetByName("CHOICES");
// grab the values in the first column of the sheet - use 2 to skip header row
var namesValues = names.getRange(2, 16, names.getMaxRows() - 1).getValues();
var studentNames = [];
// convert the array ignoring empty cells
for(var i = 0; i < namesValues.length; i++)
if(namesValues[i][0] != "")
studentNames[i] = namesValues[i][0];
// populate the drop-down with the array data
namesList.setChoiceValues(studentNames);
}
This is the form.html code:
<!DOCTYPE html>
<html>
<body>
<style>
body {
padding: 0px 0px 0px 0px;
margin: 0px 0px 0px 0px;
background-color: white;
}
</style>
<link href='/static/forms/client/css/3145455273-
mobile_formview_st_ltr.css' type='text/css' rel='stylesheet' media='screen
and
(max-device-width: 721px)'>
<div class="ss-form-container">
<div class="ss-header-image-container"><div class="ss-header-image-image">
<div class="ss-header-image-sizer"></div></div></div>
<div class="ss-top-of-page"><div class="ss-form-heading"><h1 class="ss-
form-title" dir="ltr">Test</h1>
<div class="ss-form-desc ss-no-ignore-whitespace" dir="ltr">WELD DATE
00</div>
<div class="ss-required-asterisk" aria-hidden="true" id="Required">*
Required</div></div></div>
<br><br>
<div class="ss-form">
<script type="text/javascript">var submitted=false;</script>
<iframe name="hidden_iframe" id="hidden_iframe" style="display:none;"
onload="if(submitted)
{window.location='https://sites.google.com/site/formredirection/';}">
</iframe>
<form action="https://docs.google.com/forms/d/e/formid/formResponse"
method="post" target="hidden_iframe"
onsubmit="submitted=true;">
<div class="ss-form-question errorbox-good" role="listitem">
<div dir="auto" class="ss-item ss-item-required ss-select"><div class="ss-
form-entry">
<label class="ss-q-item-label" for="entry_890244015"><div class="ss-q-
title">JOINT
<label for="itemView.getDomIdToLabel()" aria-label="(Required field)">
</label>
<span class="ss-required-asterisk" aria-hidden="true">*</span></div>
<div class="ss-q-help ss-secondary-text" dir="auto"></div></label>
<select name="entry.890244015" id="entry_890244015" aria-label="JOINT "
aria-required="true" required=""><option value=""></option>
<option value="OPTION 01">OPTION 01</option> <option value="OPTION
02">OPTION 02</option> <option value="OPTION 03">OPTION 03</option>
<option value="OPTION 04">OPTION 04</option></select>
</div></div></div>
<div class="ss-form-question errorbox-good" role="listitem">
<div dir="auto" class="ss-item ss-item-required ss-radio"><div class="ss-
form-entry">
<label class="ss-q-item-label" for="entry_117174731"><div class="ss-q-
title">REP NO.
<label for="itemView.getDomIdToLabel()" aria-label="(Required field)">
</label>
<span class="ss-required-asterisk" aria-hidden="true">*</span></div>
<div class="ss-q-help ss-secondary-text" dir="auto"></div></label>
<ul class="ss-choices" role="radiogroup" aria-label="REP NO. "><li
class="ss-choice-item">
<label><span class="ss-choice-item-control goog-inline-block"><input
type="radio" name="entry.735659431" value="" id="group_735659431_1"
role="radio" class="ss-q-radio" aria-label="" required="" aria-
required="true"></span>
<span class="ss-choice-label"></span>
</label></li></ul>
<div class="error-message" id="117174731_errorMessage"></div></div></div>
</div>
<div class="ss-form-question errorbox-good" role="listitem">
<div dir="auto" class="ss-item ss-item-required ss-date"><div class="ss-
form-entry">
<label class="ss-q-item-label" for="entry_1715668372"><div class="ss-q-
title">WELD DATE
<label for="itemView.getDomIdToLabel()" aria-label="(Required field)">
</label>
<span class="ss-required-asterisk" aria-hidden="true">*</span></div>
<div class="ss-q-help ss-secondary-text" dir="auto"></div></label>
<input type="date" name="entry.1715668372" value="" class="ss-q-date"
dir="auto" id="entry_1715668372" aria-label="WELD DATE " aria-
required="true" required="">
</div></div></div>
<div class="ss-form-question errorbox-good" role="listitem">
<div dir="auto" class="ss-item ss-item-required ss-select"><div class="ss-
form-entry">
<label class="ss-q-item-label" for="entry_1048274308"><div class="ss-q-
title">WELDER
<label for="itemView.getDomIdToLabel()" aria-label="(Required field)">
</label>
<span class="ss-required-asterisk" aria-hidden="true">*</span></div>
<div class="ss-q-help ss-secondary-text" dir="auto"></div></label>
<select name="entry.1048274308" id="entry_1048274308" aria-label="WELDER
" aria-required="true" required=""><option value=""></option>
<option value="WR 01">WR 01</option> <option value="WR 02">WR 02</option>
<option value="WR 03">WR 03</option> <option value="WR 04">WR 04</option>
</select>
</div></div></div>
<div class="ss-form-question errorbox-good" role="listitem">
<div dir="auto" class="ss-item ss-item-required ss-select"><div class="ss-
form-entry">
<label class="ss-q-item-label" for="entry_1712008875"><div class="ss-q-
title">WPS
<label for="itemView.getDomIdToLabel()" aria-label="(Required field)">
</label>
<span class="ss-required-asterisk" aria-hidden="true">*</span></div>
<div class="ss-q-help ss-secondary-text" dir="auto"></div></label>
<select name="entry.1712008875" id="entry_1712008875" aria-label="WPS "
aria-required="true" required=""><option value=""></option>
<option value="WPS 01">WPS 01</option> <option value="WPS 02">WPS
02</option> <option value="WPS 03">WPS 03</option> <option value="WPS
04">WPS 04</option></select>
</div></div></div>
<input type="hidden" name="draftResponse" value="
[null,null,"-8333688893315580231"]
">
<input type="hidden" name="pageHistory" value="0">
<input type="hidden" name="fbzx" value="-8333688893315580231">
<div class="ss-send-email-receipt" style="margin-bottom: 4px;" dir="ltr">
<label for="emailReceipt" style="display:inline;"></label></div>
<input type="submit" name="submit" value="Submit" id="ss-submit"
class="jfk-button jfk-button-action "></form></div></div>
</body>
</html>