I’ve been using the “datastore in a floating group” technique for some time now, but recently I needed to have that datastore inside a reusable element so it’s accessible from different reusable elements.
What I’ve found :
- create a custom state (list) inside the reusable element, and set this custom state from inside the element with my list of stuff → when accessing this CS from outside the RE it will NOT be updated real time.
- create a custom workflow inside the reusable element, this workflow RETURNS a list of stuff → then trigger this workflow from outside the RE and populate a variable with the result → this WILL be updated real time.
For practical reasons I would like to rely on a custom state on this RE but I need that to be updated real time.
Any idea how to workaround this?
Thanks