I am developing a new app where I need to show in real time.
Here is an example: imagine that I have around 15 items that need to be shaken, and each one has a diferent interval to be ready.
I need to show in real time, or update this table in each 30 seconds to inform the user wich product is ready, wich is still being shaken and wich is not ready within an App.
Since this products may not be the same in every day’s work. So I need a dynamic way to compare the begin date&time and the finish date&time of all elements on the table.
By compairing the finish date&time with the current date&time, I need to update the status color and txt .
This table will be used to show the operator wich products are ready to use in real time.
in this case, the check is done on a button click but can just as easily be done on a 30 second timer as you mention. does this help you build what you’re trying to??
let me know if there’s something I can help clarify!!
Imagine that my table has more than 20 items. I would have to prepare more than 20 triggers to check each one of them?
I was hopping that I could run all my table lines checking the end time and current time and auto update the status collumn.
Is there a way where I can compare the current date and time with all finish date and time in a table and change the color status based on the result? Like :
if (fisnish date and time < current time) then change status color to green
else if (current date and time is between begin and finish) then change status color to yellow
otherwise change status color to red.
Another thing, this table will not have always the same table records, so I do not want to have to manage many triggers every time I include or exclude a record of my table.
Any tips are welcome and help.
I will look forward to this new feature, meanwhile I believe that I will have to mannualy meka all the triggers one by one for each table record.
Hi @Oshiro,
Probably to prevent any duplicate triggers, you could use a kind of “loop” behavior to update all of your records.
Currently, the way to perform loop on tulip is not automatic and you are blocked when you have to made more than 10 loops.
Fortunately, you can use a double, tripple,… actions update to increase you “automatic update capacity”