how do I trigger a popup when a new record gets added to a Thing. I have an API workflow which creates a thing. So I’m trying to popup on the UI side that a thing has been created.
If someone can point me in the right direction, it’ll be much appreciated.
You could just have a “Do When Condition is True” event that has a listener on the database value you want to check for and compare it to a custom state value that has the currently known value (known to the UI). Set the event’s “Run this” to “Every time” rather than “Just once”. When the event is triggered show the pop-up as action step 1 and change the value in the custom state to the current database value for action step 2. You will have to grab the database value initially on page loaded and store it in the custom state to prevent it triggering initially. This will definitely cause a realtime response/trigger on the UI without any multi-second lags.