Advertisement
Guest User

Untitled

a guest
Sep 16th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. function showUserForm() {
  2.  
  3. var template = HtmlService.createTemplateFromFile("UserForm");
  4.  
  5. var html = template.evaluate();
  6.  
  7.  
  8. html.setTitle("Tag Regisztráció").setHeight(300).setWidth(700);
  9.  
  10. SpreadsheetApp.getUi().showModelessDialog(html, "Tag regisztrálása");
  11. //.showModalDialog(html, "Új cím");
  12. //.showSidebar(html);
  13.  
  14.  
  15.  
  16.  
  17.  
  18. }
  19.  
  20. function appendData(data){
  21.  
  22.  
  23. var ws = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("V3.5 Tagok");
  24. ws.appendRow([data.name,data.rend,data.jelvenyszam,data.csatlakozas,data.irl]);
  25.  
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement