Have you tried Tables element yet as suggested? Isn’t it exactly what you are looking for? A table?
The alternative is that you build your own table using repeating groups which has always been how we had to do it (without plugins) and hence why Bubble decided to release the new Table element.
I think i have not made my question clear as it should be , my apologies.
What i meant is the following:
Let´s say i have the object user with the fields:
name
surname
age
phone number
How can i get the list of texts : “name”, “surname”, “age”, “phone number” without actually writing those texts but getting the fields names of the object user (in this case name, surname, age and phone number) in a dynamic way?
Currently there is no native way to dynamically retrieve fields from a datatype. There are 2 ways I can think of to workaround this.
Manually in each element. Which is what you want to avoid.
Creating an option set replicating the fields of your datatype. So you can use the option set as a list to dynamically fill a repeating group. Now all you have to do is just update that data set instead of individual elements.
I think you want to dynamically get the field name of your data types.
If yes, then it is not possible from bubble directly. But depending on your use case, there are a few ways to achieve this.
Use some script to crawl through your editor data type tab to get the respective field names. Extract the values & show them(This one might be time-consuming, and need for you to hire some professional)
Store the field names in some option set, or another datatype. Update it whenever you create a new field. This might be a bit of a hassle to maintain.
If you are using option sets, just make sure to not put any information which is private.