google-app-maker

Trying To Filter Only Rows That Meet Two Criteria

拜拜、爱过 提交于 2019-12-02 12:01:09
I promise I have read through the Query information page, but obviously I am missing/misunderstanding something. I have a Table that has the statuses for multiple departments (the fields are Strings). When a user loads that table I want App Maker to hide jobs that have been finished . The way we categorize a job as finishes is when: The Inventory Status = Complete and when the The Delivery Status = Delivered . Both these conditions need to be met. Example: Inventory (Complete) + Delivery (Delivered) = hide Inventory (In Progress) + Delivery (Delivered) = don't hide Inventory (Complete) +

How to include a relation of a relation in an AppMaker table field?

懵懂的女人 提交于 2019-12-02 09:33:28
I have three data models, Partner, Client and SOW, where Client is a one-to-many relation to SOW, and Partner is a one-to-many relation to Client. I would like to include Partner Name as a column in a table displaying SOWs. Is there a way to do this with a datasource query script? Or a different approach altogether? I was able to add a label to the SOW table row that is data bound to the Partner name via relation, but I have yet to tackle sorting and filtering by Partner, and this method appears to fetch Partner real-time after the table loads. I am currently using Drive Tables as my

Correct Usage Of Groups For Permissions

北城余情 提交于 2019-12-02 06:19:01
问题 I have published a deployment that runs with the developer account. In the deployment settings I have a role called "Supervisors". I have assigned a google group to that role, directorssupervisors@domain.com. When the deployment runs with the developer account, everythings works fine. But when the deployment is ran by any other user, I get the following error: appmaker.application.permission.GroupsPermission: Error reading group directorssupervisors@domain.com. Note: The deployer

Workaround solutions to Google App Script “Exception: FILENAME.csv exceeds the maxmium file size”?

别等时光非礼了梦想. 提交于 2019-12-02 01:36:19
问题 I am building a Google App Maker application that takes a user-uploaded Excel CSV spreadsheet file as input. I have thought of multiple, possible solutions to reading the data from this file, but I have encountered this error: "Exception: FILENAME.csv exceeds the maximum file size" each time. I have tried extracting the data via parseCSV() to Google Cloud SQL, reading in as one string via .getBlob().getDataAsString() and splitting it by "\n," and writing all the data to Google Docs and trying

Workaround solutions to Google App Script “Exception: FILENAME.csv exceeds the maxmium file size”?

我怕爱的太早我们不能终老 提交于 2019-12-02 01:26:52
I am building a Google App Maker application that takes a user-uploaded Excel CSV spreadsheet file as input. I have thought of multiple, possible solutions to reading the data from this file, but I have encountered this error: "Exception: FILENAME.csv exceeds the maximum file size" each time. I have tried extracting the data via parseCSV() to Google Cloud SQL, reading in as one string via .getBlob().getDataAsString() and splitting it by "\n," and writing all the data to Google Docs and trying to read it from there. However, all of these methods have resulted in the same error. Is there any

Google App Maker app not working after deploy

本秂侑毒 提交于 2019-12-01 14:33:16
I have built an app with Google App Maker which has a Suggest Box linked to a table by a Query parameter. The app works correctly in Preview mode, but when I deploy it, the Suggest Box doesn't suggest anything! I have deployed it once before (without a select box as I recall) and it worked correctly. I tried redeploying to the original deployment and deploying to a new deployment, same result. Am I missing some security setting or something? I am using Drive Tables as my datasource. The kind people at Google sent me a couple of links which helped me to understand what's going on: previewing

Accessing data in Google Drive tables with Google App maker

╄→гoц情女王★ 提交于 2019-12-01 14:12:23
How can I access the data contained in Google drive tables? I created some basic apps after reading the tutorials, but I'm unable to to see the sample data I entered. Option 1: Don't use Drive Tables App Maker gives you power to connect to Cloud SQL instance , that you can access through Cloud Shell or connect with some tools like MySQL Workbench . Pros Works nice if you have your own Cloud SQL instance Cons This approach falls short in environments with shared Cloud SQL instances Cloud SQL is not free Option 2: Export data to spreadsheet Regardless what data backend you are using you can dump

Accessing data in Google Drive tables with Google App maker

断了今生、忘了曾经 提交于 2019-12-01 12:56:48
问题 How can I access the data contained in Google drive tables? I created some basic apps after reading the tutorials, but I'm unable to to see the sample data I entered. 回答1: Option 1: Don't use Drive Tables App Maker gives you power to connect to Cloud SQL instance, that you can access through Cloud Shell or connect with some tools like MySQL Workbench. Pros Works nice if you have your own Cloud SQL instance Cons This approach falls short in environments with shared Cloud SQL instances Cloud

Google App Maker app not working after deploy

拟墨画扇 提交于 2019-12-01 12:47:17
问题 I have built an app with Google App Maker which has a Suggest Box linked to a table by a Query parameter. The app works correctly in Preview mode, but when I deploy it, the Suggest Box doesn't suggest anything! I have deployed it once before (without a select box as I recall) and it worked correctly. I tried redeploying to the original deployment and deploying to a new deployment, same result. Am I missing some security setting or something? 回答1: I am using Drive Tables as my datasource. The

Download File in Appmaker

北城以北 提交于 2019-12-01 12:36:20
I have created one app in Appmaker, I want to download certain reports from the Drive tables in Appmaker. For this currently I am creating SpreadSheet using Drive APIs. I want to add download feature as well which allows users to Download Spreadsheet in their local machine. I have done research on Appscript which allows users to Download files using ContentService, however I do not have any HTMl page from where I can invoke this method. Are there any alternatives for this? It seems that you can get download URL using DriveApp Apps Script service // Server script var downloadUrl = DriveApp