I’m so unfamiliar with Bubble’s editor, I’m not sure how to achieve that with a text element. Is there no way to get a result with an RG?
Here’s what I have for a text element:
And for the RG:
For the text element, it should be Current cell 's name
I’m not quite sure what you mean. Create a text element to take the RG data (I’m not sure how to take the current cell value)? Is there no way to display the JSON through the RG itself?
The repeating group contain cell. In the first cell, you add element like text field. You use “current cell” to select the data you want to display
Ok that worked perfectly for displaying one field in the json obj. Is there a way to display all 3 fields? eg. set RG columns to 3 to display each of 3 fields. I tried doing that but it only allows one text element to fill cell (0,0). Can’t fill cells (0,1) or (0,2) with text elements.
Edit: I just figured out how to display my data with 3 separate RG’s and have each one act as a column. But is there a way to bound my data within one RG that’s been defined to have 3 columns?
You dont need 3 RG. Only one with text element for each data.
Dont use 3 column in RG. Only 1 but add text element to create a kind of column for each value
Ok, so create a text element and then format the text in a type of way for it to be:
Name: {name} | Val1: {val1} | Val2: {val2}
Is there a way for me to use an RG like this (to include header row for better look)?
Yes. This is how you need to do it. Now go 8n the text element and replace …edit me… by clicking on it with dynamic data and select current cell’s name for example
no you don’t need to use 3 RG. Use 3 Text field inside the same RG. One for each data (color, length and area).
There’s also a few plugin that work like a table (search table in plugin) that will set the column for you.
Ok, I was able to get it working and properly formatted, thank you so much for the help!!