work monitored
work monitored

Reputation: 451

Adding a user-filled value as well as a pick value for google appmaker

I would like to define a field, where there is a list of allowed values as well as give user the option to type it in. For example, I list a bunch of previous jobs that the applicant can have, plus have them pick other and fill it in as well.

Is it possible to do this with one field or do I need two fields where the user has to type it in? Is there a doc. or sample or tutorial I can look up? Thanks.

Upvotes: 0

Views: 106

Answers (1)

Pavel Shkleinik
Pavel Shkleinik

Reputation: 6347

Here is a super simple Tags sample:

https://drive.google.com/open?id=0BxtQI4fTAVQqcUx4OUJfQ1JYV2c

To cover your exact use case you just need to:

  1. Add logic to check if record already exists

    1.1 If record doesn't exist, then create one

  2. Create relation between records

If you don't care about duplicates in your database, then you can skip step 1 and always do 1.1 and 2.

Upvotes: 1

Related Questions