Questions tagged [google-app-maker]

DO NOT USE for new questions. The google-app-maker tag is used for questions about the deprecated Google App Maker. It was deprecated in 2021.

The tag should be used for questions about Google App Maker.

NOTE: Since April 2020 no new App Maker apps can be created. It was shut down on January 2021. Ref.

App Maker was a low-code, application development tool

1130 questions
2
votes
2 answers

In Google AppMaker, How to filter using a single DateBox?

I am trying to filter a table using a DateBox. The problem I have is that it doesn't display the records of that day when binding value is set to @datasource.query.filters.date._equals. However, it does work when the filter is _greaterThanOrEquals,…
XY6
  • 3,082
  • 4
  • 21
  • 26
2
votes
4 answers

Google App Maker - how to open hyperlinks on button click

I'm having an issue where tapping on a button, I need it to open a hyperlink. How can I achieve this?
Tiktak132
  • 21
  • 6
2
votes
2 answers

How can I share my app made by Google App Maker with others?

I created sample "Projects" app (Welcome Tutorial) using App Maker . I deployed the app and clicked on publish. How can I share it with my friends outside my domain ? My domain is mahajiban.org , how someone with email id at gmail (outside my…
Maha Jiban
  • 23
  • 2
2
votes
1 answer

Gsuite App Maker File Upload Functionality

Is there any way to add file upload functionality in G-suite app maker? If any one have any idea please help.
TestUser
  • 45
  • 7
2
votes
1 answer

Make table row behave like an accordion

I'm using a table to display assignments. The table row has an initial height value of 300px. When the table is loaded, the table row height is reduced to 50px so that some of the details are hidden and this is done by adding a style. .hidedetails…
Morfinismo
  • 4,985
  • 4
  • 19
  • 36
2
votes
1 answer

How to center a block in Google AppMaker

I'm trying to center a 940px widget in my page. In the layout panel it's not possible to set Left and Right to auto at the same time. So far I can only attach a block to left or right. Is it possible to center it to have all the element to stay in…
Vivien
  • 1,159
  • 2
  • 14
  • 34
2
votes
1 answer

Applying Script Library for Timeline

This is a follow up to my previous question. I apologize if this is too complex to answer here. I am trying to be able to show my data in a timeline view. I found a timeline script from Google here:…
Adam Bergeron
  • 535
  • 3
  • 11
2
votes
1 answer

Need To Show Directory Output as Full Name Instead of Email Address

I'm following the steps in this video to create a Comments Section. James (the author) created two models, then creates a relation between the two, then creates a table to add/edit comments/notes. He uses the following Event in one model: onCreate …
Adam Bergeron
  • 535
  • 3
  • 11
2
votes
2 answers

Trouble converting Google App Maker from draft record in datasource

I see that the draft record in datasource is deprecated. I read the release notes but am having trouble with one bit of code. Tried to convert this: widget.datasource.draft.Email = (newValue) ? newValue.PrimaryEmail : null; to…
Scott
  • 477
  • 4
  • 20
2
votes
2 answers

Query as Widget Datasource

I'm trying to define a widget's datasource as the result of a query, but I'm not sure if it's posible. I'm working with SQL views and a Table, I'd like to show the values of the IDs that I have on the table that come from the views. function…
2
votes
2 answers

Generating an email list from AppMaker Database

I am trying to figure out how I can get database information involving the email column, make an array with all of the emails and then use the "button" feature to populate the "To:" part of an email page. Any help is appreciated. Very new at this…
2
votes
2 answers

How to attach a callback to a custom confirmation dialog in Google App Maker?

I am creating a custom confirmation dialog in Google App Maker and would like the Confirm button to call a passed-in function. I don't see an "onclick" event in the button widget. Any suggestions on how to do this? function confirmationDialog(msg,…
Scott
  • 477
  • 4
  • 20
2
votes
1 answer

Displaying server side validation errors

For one of my models, I have a simple ondelete event handler: function validateStateDeletion(record){ if (record.Name===STATE_SUBMITTED || record.Name===STATE_CLOSED){ throw 'Cannot delete internal states '+STATE_SUBMITTED+' and…
Tony BenBrahim
  • 7,040
  • 2
  • 36
  • 49
2
votes
1 answer

Using ES6/7 in AppMaker Scripts

When using arrow functions: [cbCenter, edtTitle].forEach(widget => widget.validate()); The following warning is displayed The code runs correctly, so I just need to know how to enable the esnext option to get rid of the warning?
Tony BenBrahim
  • 7,040
  • 2
  • 36
  • 49
1
vote
1 answer

Custom Marker Icon Image Url GoogleMap Compose Android

GoogleMap composes support maker icons but does not help get from Url, I hope some coding helps customer properties Icons image easy more. But If you have a solution good more, please comment here Code in GoogleMap compose val bitmapState = remember…