I have searched and read through a lot of threads but still not able to find an way of iterating through a table and displaying rows.
I am able to GetColumn and display all rows for a single column but looking for a way to get access to all columns in the row in a table. I dont want the getcolumn duplicated for each column.
I am using GetAllRows and get the rows which is an object and when I display, it displays as just Object.
I have defined a few columns within a row, tried listviewer, etc.
How do I get fields from the object (rows) so I can access each column and display it or use it to do something?
Yes, I was to be able to get each column and display them. I have a couple use cases.
One is just display 3 columns in the table as a table in the screen.
Other one is as below:
For example, here is how the row with columns can look:
name | description | URL | icon , etc
I need to be able to get access to each and create a view to display name as a header, then image and description and then show a link for the URL column.
@sharathnagendravjp Awesome! What kind of app are you building? If you share a little more about what you’ve done via screenshots or a share link I can be more helpful. For starters though, check the links in this post
Thanks for the response and the link to that post, looks like a lot of good information.
I will review it and hope to find what I am looking for.
I am fairly new to thunkable, so struggling a little bit on how things work.
One screen is a glossary of terms with definitions. The information is in airtable and was trying to retrieve the rows and display the columns.
I was able to connect to airtable and display data from one column usinig GetColumn, but GetAllRows was not intuitive as it comes as an object and no easy/obvious way to get columns.
Once I get this working, will get to the next screen which has more information.
Not much to show yet, simple, but here is design, blocks and what is being displayed:
k. looks like you need a list viewer. and to throw all rows though a loop. see my screenshot below.
first i put all rows into a variable. i send that variable to be filtered. i flter based on certain properties. think about a property as a column position in a given row.
when you put ‘all rows’ into the loop, the loop looks at the entire thing 1 row at a time. then when you say look at property X, you are really talking about column X in the current row that the loop is looking at, starting with the first.
then at the bottom, i take out the particular ‘properties’ of object (row) j. and store them into a variable as a list.
Thanks for your quick response and a solution. I had used a listviewer and that did not give me more than what I was seeing, so had removed it.
I was having trouble with taking the rows and using it. Thanks for your example, will try what you have suggested.
Are you using a function? fetch_chart_1?
at this point,i send the my chart setup to my api so it reutnrs a URL to use as a src for an image. when i get it back, i pass the response through this function to parse the response and to clean it up for use.
then i save the shortened URL’s to airtable in the last recorded row. the URL is then sent to another person via Integromat so the chart can be saved forever by the end user
@jared, really appreciate you taking time to share and explain in detail. Thanks a lot!
I was able to get two columns displayed, but it showed only the last row from the table.
In my layout, I had a row and had two columns and displayed the values in each column, but just one row, the last one from the table.
How would I show all rows?
If I have a listviewer, I dont know how to have more than one column displayed.
yep. instead of putting these things into a label. make that a variable. then, try to make the listvieweer show the variable. check this out, for example. i made this for your case.
I have used this kind of idea in my previous apps, where I wanted to display three-four columns’ data in one line, i.e. in one item of listviewer. I have used these kind of blocks -
Brillant! But I don’t know why in this way the list displayed is in a undefined order… no sort by name or date or order of inserted data… I can’t understand which is the logic behind. Do you have any advise ??
I would it was displayed as it is in my AirTable… but unfurtunatelly it isn’t. I don’t know if I’m in the middle of a bug but there is (apparently) no logic on which order they are displayed!
I see the 7th row as 1st, then, the last as 2nd and so on…sort of random