In these blocks everything is normal upto “Got All Rows” and then I am requesting for a particular row and storing them in a list “name3”.
Everything is normal upto this but after this I am using “for each number from 1 to” (in Got Row block) and from here I should get 2 different card view with 2 different image and text, but I am only getting value of 1 row at a time in 2 card views with same image and text. And also getting this error
probably this is the error, you used “select list item” inside a “select list item”
the outmost “select list item” returns a single item to the “select list item.list” and hence it is a single element not list you cannot call it with index more than 1
thx, but I figured it out
actually what was happening is that, I was first storing all the values one by one in list “name3” and without knowing that all values are stored in the list, I am requesting them. Means I am then requesting for values that not even stored yet in list “name3”.
So I add this block also and it’s working perfectly =