Thanks for the response @boston85719! I should mention that the purpose of this was to capture text from a nested RG, and on button click (outside of RG), the text would be saved to DB.
In saying this, currently my Maestros are outside of the RG, as below:
And re:
unless, that is a custom state value that you are setting from the Musicians current cell’s index
That’s correct - current cell’s index of Musicians is a custom state, which is then sent to the corresponding Maestro as it’s state (cell) number.
Re:
won’t work because the musician element will be in every single cell, since the musician element is placed inside of the repeating group, and so, for each cell of the repeating group, there will be a musician element, which means, the reason it works and then doesn’t is because it will take the musician element in the first cell but doesn’t then shuffle through every other cell.
If there is a need to trigger a specific cell number, think of another way to reference the correct cell number.
As a workaround to achieve the functionality I’m after, I’ve managed to get something working by using JS2Bubbble elements, and using custom states to pass the data from the nested RG JS2Bubbble element (A), to a JS2Bubbble element (B) outside of the RG.
I then reference B in my workflow to ‘create new thing’. That all works as expected, although it’s only creating new thing on one item/cell of the RG, when the idea is to ‘create new thing’ on multiple cells of the nested RG, not all though - so a multi-select functionality.
To achieve this, would I need to have an element in the nested RG with a custom state to of yes/no when clicked, send that state’s value to the RG element and then change all the custom states of the JS2Bubbble element to ‘list of items’? Not sure if I’m on the right track with that…
-
Right now I have, when a button clicked RG’s custom state list ‘Selected cell’ is set:
-
Then passed the value to JS2Bubble B’s list state ‘Task text’.
-
I then parse and split the Parent Group’s text in the ‘create new thing’ workflow.
This for some reason is only creating one of the multiple cells selected… what am I missing here?
Thanks again!