Guest User

Untitled

a guest
Mar 23rd, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. --Code.gs
  2. |
  3. |- openFormModalDialog()
  4. |- fetchData()
  5. |- updateSheet()
  6. |
  7. --form.html
  8.  
  9. function openFormModalDialog() {
  10. var ui = SpreadsheetApp.getUi();
  11. var htmlOutput = HtmlService
  12. .createHtmlOutputFromFile('user-info')
  13. .setWidth(400)
  14. .setHeight(300);
  15. SpreadsheetApp.getUi().showModalDialog(htmlOutput, 'User Information');
  16. }
Add Comment
Please, Sign In to add comment