Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. In designing a "SIMPLE" web app, I want to query
  2. the sheet using the user's response( captured in
  3. the html textbox) and then display the cells
  4. that match, but the issue is wiring the submit
  5. button to return the results
  6. **strong text**
  7. function doGet(e) {
  8. return HtmlService
  9. .createTemplateFromFile('frontend')
  10. .evaluate()
  11. .setSandboxMode(HtmlService.SandboxMode.NATIVE)
  12. }
  13.  
  14. <tr>
  15. <td>Search name: </td>
  16. <td><input type="text" name="Name" /></td>
  17. </tr>
  18. <input type="submit"
  19. onclick="google.script.run.do_it(??????)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement