#Problem title

1 messages · Page 1 of 1 (latest)

digital pilot
#

use self.children[i]instead, i being the position of the item you're accessing

digital pilot
#

you subclassed modal already, so add a select argument before so you can pass it in py def __init__(self, select, *args, **kwargs): self.select = select super().__init__(...)then call it by passing self in the modal callback
also that modal callback will break because you can't respond twice

digital pilot
#

other way... you want to pass the select to modal, not view

#

so now you update your code in send_modal...

#

we're passing select into the modal...

#

your goal was getting values from select inside the modal object