I have a RG with a column of dropdowns. A user is able to change the dropdowns (or leave them the same) and upon hitting ‘Save’ - I want to set a state (list) of texts.
I have set up the workflows as instructed (it works in a different workflow):
1- When Musicians B is revealed → Initialize Musicians B
2. Musicians B will run workflow in each cell → set the state
3. Save button - trigger Musicians under Maestro B
The issue: when I run this workflow and hit ‘save’ - the state only sets 10 items (my RG has 30). and it doesnt appear to be the first 10 items either - it captures the first 5 and then its a random 5 thereafter (Screenshot shows the state at the top).
Has anyone experienced this? Anything I’m doing wrong?
IDK bout better, but it’s a blatant pull from the original (cause they track you and your users) but doesn’t include their tracking and has some additional perks to make your elements dynamic.
I’ve ran into some odd behavior with Orchestra before and have usually resolved it by using the “List of numbers” element from the Toolbox plugin. You set the list of numbers length to the length of the rg, and then instead of setting “Trigger every cell” to yes, set “Trigger multiple cells” to yes (and set “trigger every cell” to no) and add the list of numbers from the “List of numbers” element to the cell position list field. Not sure if this will fix your issue but it’s definitely worth a shot.
You have it right with the 1 starting point, I don’t believe that is the issue.
Have you tried checking “Show all items immediately” on the repeating group and seeing if that helps? It may if some of the cells are not immediately visible.
Double check the class names from your initialization event to make sure they match the class name in the “trigger musicians…” event too.
And if it continues to give you issues maybe consider taking a look at @GH5T 's plugin since it appears to do everything Orchestra does and more lol.
Thanks @aj14 - just tried and no error this time, but it still just generates 10 seemingly random items (as opposed to the full list).
I just downloaded @GH5T 's plugin. There’s isn’t much documentation - does it work the same as the musicians/maestro? I noticed the energizer pod has a few different settings that I’m not sure about. Any tips you have here would be awesome @GH5T.
I took a look at the documentation again and this section gives me the sense something is up since it’s always returning only 10 results. But I checked and the only thing I have checked is 1 fixed column and no fixed rows… Feels like its an RG issue somehow but I can’t quite figure it out still…
Hello @jmoney ,
Thank you for using our plugin, and sorry for any inconvenience you have encountered.
We have tried to reproduce your issue here as far as we understood from your details. We couldn’t identify the issue as the plugin is working properly and your setup looks correct.
As we are not aware of all the specifics of your setup, we are not sure if we were able to reproduce your exact situation.
It would be helpful if you could share a video recording showing your entire setup and the issue in a more detailed way. We would be also more than happy to take a look at the issue inside your app, of course only if you are open to this idea. It will allow us to understand your use case much better and identify the issue in a faster manner.
Thank you for your understanding, Don’t hesitate to reach out to us if you have further questions.
Have a nice day!
Hey @ZeroqodeSupport - appreciate you trying to duplicate the issue. I took a look at your set up and there’s one small error - I am trying to gather the values into a custom state from each dropdown value while your set up is currently pulling a list list of all gb’s (basically producing the same 20 results each time regardless of what’s in the dropdowns).
As an example the state should be showing ‘team 1, team 2, etc.’
Also not sure if this matters but in my set up its in a popup, and I have the state set on the popup, the Maestro on the popup and the Musician inside a Group with the Dropdown.
Just to give everyone an update and for those future users who might come across this thread, I found a solution.
So in short, it wasn’t Orchestra or Energizer that was the issue - the reason why I was getting limited results was that states inherently removes duplicates (which is so ridiculous). As a result, I was always getting 10 results because I only had 10 unique choices. This took days for me to figure out after I had suspected I had accidentally added ‘unique’ filtering somewhere.
So I came across this video that is workaround on how to add dupes in custom states.
After figuring that out, I then ran into another issue where the ‘make changes to a thing’ workflow was executing before all the cells were triggered, causing it to overwrite my database with blanks instead of my new list. I created another workaround where I have two workflows - one to kick off the cell triggers to create my new list, and then another to save it to the database.
Thanks everyone for helping and hopefully this helps anyone who might run into this issue in the future.