I’ve made an app in Bubble that lists a series of exercises using a repeating group. There is a thing for each exercise and it just reads each exercise, and how many reps per set and displays it in each group:
The user can enter the actual number of reps in the input field.
If the click the update goals button in reads the input box and updates the exercise goal with the value from the input box:
This works fine, but I want it to create a new thing for each exercise when the user clicks a ‘log exercise button’. But when I am trying to get the input field values for each group across the whole repeating group I can’t see the input fields to get a value from:
I can get a far as specifying the repeating group, then I can only see this:
If I select ‘list of exercises’ I can only see operators and a list of data fields from the thing, but not the input element:
Any ideas what (probably basic) thing I am doing wrong? Thanks in advance!
Matt
Use Orchestra plugin, because you can’t extract input values from repeating group cells that easily.
1 Like
I have created a small script , when user run it, we will collect all input value and then depending on it will add it to the respective field.
if you like i can help you with it.
what i did, i put a ID on each input inside RG, and once user run a submit button i collect each input value by using a custom JavaScript, and pass those in a list in toolbox javascript2bubble workflow.
this will trigger a workflow which have a list on input value and then i reference each to respected field save it.
Looks perfect, thanks so much Siddharth
Thanks Baloshi, much appreciated
I’m having a similar problem. I’d be grateful if you could offer your input.
I’m as new as it gets to creating an app so I apologize if this is confusing. I can give you the link to the editor if that’ll help.
I’m trying to take a quantity from an input in a repeating group, view it in another repeating group that acts as an “order summary”, then add the product in the repeating group to a cart.
I’ve been at this for a week and I’m pulling my hair out trying to find a solution. Orchestra paired with Javascript seems to come the closest.
So far, I can get the quantity to appear in the second repeating group but the problem is, when send the quantity to the second RG, it sends the quantity from all selected cells to each cell. If the quantity from cell 1 is 3, and cell 2 is 6, it will show as “3, 6” in all cells of the second group