I have a schedule in my app that lists items chronologically. My organization has another schedule app we’ve used that will synchronize the schedule when you open it to show the current event at the top of the screen, with the preceding events above (off the screen) and following events below. Basically, it moves the list so you’re in the middle of it.
Is there a way to do this in Glide? Like look up the current time and then shift the table to a particular event but not hide all the ones before it?
I use a table to compute whether or not a particular event is the current event taking place. (This is done by subtracting the current time from the start time, subtracting the current time from the end time, and multiplying the two together; if the result is <0 then it means the event is taking place right now.)
After doing this, I’m unable to link the input text form element to the “Focus?” column because Glide doesn’t allow that. What can I do to get around this?
EDIT: Nevermind! I figured it out. I needed to have the field pull in a value from one field but set Visibility from the “Focus?” column.
I went with the solution I have because of how the date and time information is formatted. I can certainly tidy it up and will try to do so, but for now it works.
I do not have access to a CSS option for the plan I’m on (the free plan for now, eventually upgrade to the Maker plan). So I need to find a solution to making the text input form hidden but “visible.”