google-app-maker

How can I link my spread sheets to App Maker?

筅森魡賤 提交于 2019-12-06 05:30:15
问题 I'm a new user of App Maker and I've just started coding with Google App Scripts, so basically I don't know so many things about the subject, and today I'm working on a app that already exists at Google Sheets, and I have to recreate it using App Maker. The only problem is that I have all my data and scripts on Google Sheets and my boss asked to not import data but to link the App Maker with spread sheet. For example I have a search form and when I click the submit button I get the values

Trying to total columns for relation datasource

删除回忆录丶 提交于 2019-12-05 20:42:12
I am putting together a PO Request manager. I have created one model: PORequests Then created a ONE to MANY relationship with another model: Items Table on the left is the datasource: PORequests. The table on the right is PORequests:Items (relation) So when you click on PORequest #1 on the left, you see only the items associated with that specific PO request. Then when a user changes the quantity or cost of the item, the onValueEdit runs this code, creating an entry for the subtotal (a field in the Items model). widget.datasource.item.Subtotal = widget.datasource.item.Quantity * widget

Where can I find all App Maker button icons?

99封情书 提交于 2019-12-05 14:55:55
Is there a list of button icons that can be used in App Maker? E.g. when you set the HTML text field of a button to 'Edit' and choose 'Icon' as button style, App Maker conveniently provides me an icon with a pencil on it. Right now I'm looking for a dropdown arrow icon, but a list of icons would be so useful to make my UIs more clean. App Maker uses material font: https://material.io/icons/ 来源: https://stackoverflow.com/questions/44903106/where-can-i-find-all-app-maker-button-icons

Print Friendly Page

廉价感情. 提交于 2019-12-05 02:32:36
问题 So I would like to be able to have a print button for entries in our database so users can print an entry via a print friendly "form". My thought was to create a separate page, add labels and have those labels pull the relevant information. I know I can add the open widget information via this code: app.datasources.ModelName.selectKey(widget.datasource.item._key); app.showPage(app.pages.TestPrint); But I'm running into a few problems: I can't get the page to open in a new window. Is this

Suggest Box not working for SQL

前提是你 提交于 2019-12-04 12:11:44
I'm seeing an error when typing into a suggest box: Thu Dec 08 10:45:58 GMT-700 2016 Speckle models do not support distinct sorted field values. Error: Speckle models do not support distinct sorted field values. E Thu Dec 08 10:45:58 GMT-700 2016 Query for field suggest oracle.: (Error) : Speckle models do not support distinct sorted field values. E Thu Dec 08 10:45:58 GMT-700 2016 Query for field suggest oracle. failed. Value of the suggest is set to: @datasource.query.filters.project._equals and the suggestions are set to the datasource and field project. I have also un-checked "Value is a

Initiate Appmaker Document Approval from Google Drive

99封情书 提交于 2019-12-04 02:29:37
问题 I've customized Document Management System template in Appmaker as per my needs. Now instead of going to Appmaker every time to initiate an approval I want to provide functionality to initiate the workflow from Google Drive.So users can select file for Approval directly from Google Drive. My question is is there any Rest call or something via which I can initiate DMS workflow from Third party app? 回答1: Well I found a way out to achieve the result. Steps: Drive API provides a way to add your

Print Friendly Page

谁都会走 提交于 2019-12-03 20:06:48
So I would like to be able to have a print button for entries in our database so users can print an entry via a print friendly "form". My thought was to create a separate page, add labels and have those labels pull the relevant information. I know I can add the open widget information via this code: app.datasources.ModelName.selectKey(widget.datasource.item._key); app.showPage(app.pages.TestPrint); But I'm running into a few problems: I can't get the page to open in a new window. Is this possible? window.open(app.pages.TestPrint); Just gives me a blank page. Does the browser lose the widget

Google App Maker - Add a button for timestamp collection in the onclick method

 ̄綄美尐妖づ 提交于 2019-12-02 15:53:46
问题 I searched high and low and cannot find a specific answer that works. I need to add a button to a form in App Maker to record a timestamp, not a date, when clicked. So far the only thing that I've managed to get to work is widget.datasource.item.Timestamp_OUT = new Date(); I've also tried var timestamp = getTimeStamp(); But keep getting an error "ReferenceError: "getTimeStamp" is not defined". I'm probably missing the obvious as it shouldn't be this difficult to do something this simple. Any

Trying To Filter Only Rows That Meet Two Criteria

牧云@^-^@ 提交于 2019-12-02 14:38:16
问题 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

Initiate Appmaker Document Approval from Google Drive

纵然是瞬间 提交于 2019-12-02 12:30:29
I've customized Document Management System template in Appmaker as per my needs. Now instead of going to Appmaker every time to initiate an approval I want to provide functionality to initiate the workflow from Google Drive.So users can select file for Approval directly from Google Drive. My question is is there any Rest call or something via which I can initiate DMS workflow from Third party app? Well I found a way out to achieve the result. Steps: Drive API provides a way to add your App in 'Open With' menu in Google Drive. So I've created my custom app and deployed it. This app will simply