View page items? #1065
Replies: 2 comments 2 replies
-
There's no way to view the items inside In several of the scenarios that Wave supports, it's possible that different scripts/apps write to different parts of the same page, so supplying each I would recommend maintaining a separate my_cards = dict() # your card collection
def set_card(q, key, card):
q.page[key] = card
my_cards[key] = card This way, you can iterate through |
Beta Was this translation helpful? Give feedback.
-
Is there a way to view page items? It seems like q.page['page'].items would be a list by the way we reference it (
q.page['page'].items[2]
) but I print it out and just get a wave component. I have a lot of elements on one page and struggling to reference it by index. Any thoughts on how I can find exactly what index a specific component is?Beta Was this translation helpful? Give feedback.
All reactions