I'm developing a forms based ui for a google docs spreadsheet. I've got scripting attached to events on the spreadsheet which causes a HtmlUI to appear to capture user input.
I then tried to wire the logic up to capture what the user entered and feed it into the spreadsheet.
I added a script include in the head of my document for JQuery, but it seems to be removed when the page renders, an evaluation of jQuery results in undefined. I've tried loading both the google hosted and canonical jquery urls.
I dropped Jquery and tried plain Javascript DOM access using document.getElementById, and none of the elements could be found (in the submitButton() code below, the alert pops up)
I tried submitting the form using google.script.run.processForm(this.parentNode) but it doesn't seem to invoke processForm in my script library.
There's a lot of preprocessing going on, it's mangling my ids and moving my scripts around so it's difficult to debug.
here's the HTML I'm using for the form, which I'm loading as follows
var htmlOutput = HtmlService.createHtmlOutputFromFile('AddUser');
spreadsheet.show(htmlOutput);
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"> </script>
<script>
function submitButton()
{
var firstname = document.getElementById('username-caja-guest-0___');
if (firstname === null) alert("element not found");
return;
}
</script>
<style type="text/css">
.question
{
width:45%;
float: left;
clear: left;
height: 20px;
margin-bottom:5px
}
input
{
float: right;
height: 20px;
width:40%;
}
#questionbody
{
width:60%;
margin-left:20%;
}
</style>
</head>
<body>
<form id="myform">
<div id="questionbody">
<label class="question">First Name</label>
<Input id="username" type="textbox">
<label class="question">Surname</label>
<Input id="surname" type="textbox">
<label class="question">email</label>
<Input id="email" type="textbox">
<label class="question">sign up to mailing list</label>
<Input id="signup" type="checkbox">
<label class="question">area(s) of interest</label>
<Input id="interests" type="textbox">
<Input id="submitbutton" type="button" value="Submit" onclick='submitButton()'>
</div>
</form>
</body>
</html>
As far as I can tell I should be able to do this. https://developers.google.com/apps-script/html_service#ClientSideScripts
tearing my hair out at this stage, any suggestions appreciated.