I prepared one glide table which has only one column. It has 5 items.
I create the page like this: when I chose one title item from 5 items on page A, detail page appears, and I added the stopwatch component there.
However, using stopwatch by smartphone, it didn’t work well.
Sometimes the word of item on page A become number, and disappear.
The title shown in detail page also sometimes become number.
So, I add “Date and Time” column, named “TIME” column next to first column in glide table. After that, I set start time, “TIME” and duration” TIME” in stopwatch component.
Accidentally, I happen to succeed, but what does this mean?
Is it collect? Only I want to do is use only stopwatch’s fundamental function, not indicating time or recording time.
I wouldn’t bother with the Stopwatch for this. Here is what I would recommend:
Create two User Specific date/time columns. One will be for the start time, and one for the end time. It’s very important that these columns are user specific, as that will allow two or more users to do your quiz at the same time, and each will have their own start/end times.
Add a Math column using the formula End - Start, where End and Start refer to each of your date/time columns. This math column will give you a duration for each user.
At the start of your quiz, show a button on the screen. The action on this button should be a Set Column Values, setting the Start Time to the current date/time, and clearing the value in the End Time column.
At the end of your quiz, show another button. This one should set the value of the End Time column to the current date/time
You can now show the value in the Math column (duration) using a text or hint component (or something similar).
I’m sorry, but you may have misunderstood what I said.
I just want my users to answer the question in a limited time.
For example, question is “What’s your opinion for worker shortage?”
I want my users to deliver a speech for such question in 3 minutes.
Only I want my users to do is have them make a speech by counting 3 minutes using stopwatch by themselves.
Is your method still relevant in such case, too?
Thank you so much.
As @Darren_Murphy pointed out, the stopwatch REQUIRES 2 columns to function correctly. It requires one column to temporarily hold the start time and another column to temporarily hold the duration. Both columns should be user specific columns. You do not need to collect and save the values from each user, but you MUST point the Start Time and Duration settings, in the component settings, to columns that will hold those values. Otherwise, the stopwatch will not work correctly.
I don’t need countdown timer because it seems a little difficult for me.
It’s OK to use just stopwatch for now.
Please look at my first posting:
So, I add “Date and Time” column, named “TIME” column next to first column in glide table. After that, I set start time, “TIME” and duration” TIME” in stopwatch component.
This is not correct, right?
I’m trying this:
“Create two User Specific date/time columns. One will be for the start time, and one for the end time. These columns are user specific.”
“And point the Start Time and Duration settings, in the component settings to columns that I have created”.
In my case, is it OK to just do this?
Sorry for my silly question.
Thank you very much.