Public app CONTEXT(“Device”)

Hello there,
In public app to prevent multiple filling the form

  1. What is the best way to use CONTEXT(“Device”) ?
  2. Can I also add UNIQUEID() ?

( CONTEXT("Host") = "Browser" )
( CONTEXT("Host") = "Device" )

or

ifs(
context(“Host”)=“Device”,“Please use browser instead !”,
context(“Host”)=“Browser”,“Please use device instead !”
)

or

ifs(
context(“Host”)=“Device”,“Tap Below To:”,
context(“Host”)=“Browser”,“Click Below To:”)

Should I use it to Show if ? ? It would be great if button in the menu will be hidden after filled form.

Or to INITIAL VALUE in the form/where exactly ?

Solved Solved
0 5 1,409
1 ACCEPTED SOLUTION

I would suspect it is because your [Serial] column is set as the Key column, but it does not have unique values.

What doesn’t matter?
The same person using a different device (or even a different browser) will have a different Device ID and will be able to see this form more than once.

In this case, no it doesn’t really matter. See this article for more info.

View solution in original post

5 REPLIES 5
Top Labels in this Space