I introduce a Spinner
in my widget, and I want to perform some action every time I chose a different value from it.
Is it possible?
I only seem to get events on_press
and on_release
, but they are not triggered when a choice for a different value is made :-(
Best regards,
Bojan
Beacuse the spinner updates its text property every time attr:values are changes,
I would do someting like this:
Spinner:
text: '<select>'
values: ['White', 'Yellow', 'Red', 'Green']
on_text: root.on_spinner_select(self.text)
In python code:
class RootWidget(BoxLayout):
def on_spinner_select(self, text):
print (text)
you have to use on_text:
spinner:
id: my_spinner
values: ("Home", "bureau", "kitchen")
on_text: if my_spinner.text == "Home": root.Home()
elif my_spinner.text == "bureau": root.bureau()
else: root.kitchen()
now in python:
def Home():
"do your things"
def bureau():
"do your things"
def kitchen():
"do your things"
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With