As usual, an excellent and helpful video. I'm a beginner with Python and Kivy / KivyMD. I found this helpful in filtering data from an MariaDB I have connected to my Kivy project. Using your spinner video I was able to create a spinner for Year and Month filters to view specific data. Please keep up the good work. You really do help guys like me who struggle with Kivy / KivyMD. I plan to take your Python course in the near future.
What I like the best is you don't try to be perfect and re-edit mistakes out of your videos. We make mistakes as well and you are showing how to track down and fix bugs on the fly.
▶️ Watch Entire Kivy Playlist ✅ Subscribe To My RUclips Channel: bit.ly/37LrJ27 bit.ly/2IGzvOR ▶️ See More At: ✅ Join My Facebook Group: Codemy.com bit.ly/2GFmOBz ▶️ Learn to Code at Codemy.com ✅ Buy a Codemy T-Shirt! Take $30 off with coupon code: youtube1 bit.ly/2VC9WUN ▶️ Get The Code bit.ly/39ic61j
Is there any chance to delete the option text we pick when it is updated on label? For example: I click peperoni and it will be updated in Label like “You selected: Peperoni” But the peperoni text still remain after we selected it, can it be gone or hidden after we select our option text?
Why the Spinner displays his elements on the other widgets ? What if i want it to display itself in a separate space and don't collapse with the other widgets ?
Sir, from this video *Adding a Full Screen ScrollBar - Python Tkinter GUI Tutorial #96*, I wanna ask a thing.. How could we use your mouse wheel to do the pages go up and down
I need to send my kivy spinner values from a sqlite list in Python. Getting the values out of the list is no problem, but sending it from my main python file to the kivy spinner file is the problem. I cant find a way to do it? Any advice?
As always Awesome 😎. I had an issue though. I tried to use the same concept in a multiple windows simple app using .py file and .kv file and I followed all your instructions but Somehow i cant get the dropdown list: i get only the below output in this screen: Field Domains Your preferred field # the code class FifthWindow(Screen): def spinner_clicked(self, value): self.ids.click_label.text = f'you Selected: {value}' pass : name: "fifth" BoxLayout: orientation: "vertical" size: root.width, root.height Label: id: click_label pos_hint:{ 'top': 1} text: "Field Domains" font_size: 20 Spinner: id: spinner_id font_size: 15 on_text: root.spinner_clicked(spinner_id.text) text: "Your preferred fields " values: ["Community Service ", "..."] pos_hint: {"x": 0.35 } Label: text: " “ # What I’m missing? Thanks in advance!
in your .py: from kivy.properties import ListProperty list = ListProperty() list_append = [] list_append.append(a) list_append.append(b) list = list_append in your .kv: Spinner: values: root.list Spinner will have a and b as entry.
I love your kivy series. Great work and effort you put in there. I like how well you explain every little step and option! Thanks :D
Hey thanks!
Very good lessons! Thank you from Russia!
Thanks for watching!
As usual, an excellent and helpful video. I'm a beginner with Python and Kivy / KivyMD. I found this helpful in filtering data from an MariaDB I have connected to my Kivy project. Using your spinner video I was able to create a spinner for Year and Month filters to view specific data. Please keep up the good work. You really do help guys like me who struggle with Kivy / KivyMD. I plan to take your Python course in the near future.
nice!
What I like the best is you don't try to be perfect and re-edit mistakes out of your videos. We make mistakes as well and you are showing how to track down and fix bugs on the fly.
It's an important skill to learn
amazing as always
Thanks again!
Is there any way to change the background color of the spinner? And, is there any counterpart of this in kivymd?
Very straight forward ❤️
Thanks!
You make it look so easy. Great!
Thanks!
Good video helped me out alot
Glad it helped
боже храни тебя святой человек
, очень помог по практике в вузе
▶️ Watch Entire Kivy Playlist ✅ Subscribe To My RUclips Channel:
bit.ly/37LrJ27 bit.ly/2IGzvOR
▶️ See More At: ✅ Join My Facebook Group:
Codemy.com bit.ly/2GFmOBz
▶️ Learn to Code at Codemy.com ✅ Buy a Codemy T-Shirt!
Take $30 off with coupon code: youtube1 bit.ly/2VC9WUN
▶️ Get The Code
bit.ly/39ic61j
Is there any chance to delete the option text we pick when it is updated on label?
For example:
I click peperoni and it will be updated in Label like “You selected: Peperoni”
But the peperoni text still remain after we selected it, can it be gone or hidden after we select our option text?
Hi John, Can you teach me how to close our kivy application using a button.
And as always amazing video John Keep it up!
from kivy.core.window import Window
Window.close()#in the on_release : root.def()
@@ellordgaming8608 Thx man
Please how do you create a drop down item button like spinner
Hi, how to attach the selected value from dropdown list to my python script
Why the Spinner displays his elements on the other widgets ? What if i want it to display itself in a separate space and don't collapse with the other widgets ?
Why it doesn't work 'on_text' on py file? with a lambda fuction on_press and on_release work, but i need the current text and only on_text does.
Is there a way to automatically set the values for a spinner without having to actually type them in?
Please tell me How to use keyboard down arrow to select item
how to use these drop down values for list or retrive from csv?
Sir, from this video *Adding a Full Screen ScrollBar - Python Tkinter GUI Tutorial #96*, I wanna ask a thing..
How could we use your mouse wheel to do the pages go up and down
Why not ask the question on that video?
I need to send my kivy spinner values from a sqlite list in Python. Getting the values out of the list is no problem, but sending it from my main python file to the kivy spinner file is the problem. I cant find a way to do it? Any advice?
As always Awesome 😎. I had an issue though. I tried to use the same concept in a multiple windows simple app using .py file and .kv file and I followed all your instructions but Somehow i cant get the dropdown list: i get only the below output in this screen:
Field Domains
Your preferred field
# the code
class FifthWindow(Screen):
def spinner_clicked(self, value):
self.ids.click_label.text = f'you Selected: {value}'
pass
:
name: "fifth"
BoxLayout:
orientation: "vertical"
size: root.width, root.height
Label:
id: click_label
pos_hint:{ 'top': 1}
text: "Field Domains"
font_size: 20
Spinner:
id: spinner_id
font_size: 15
on_text: root.spinner_clicked(spinner_id.text)
text: "Your preferred fields "
values: ["Community Service ", "..."]
pos_hint: {"x": 0.35 }
Label:
text: " “
#
What I’m missing?
Thanks in advance!
We are waiting for Recycle view in kivy
You are waiting :-p
How can I pass dynamically the list from the .py file to the .kv file?
in your .py:
from kivy.properties import ListProperty
list = ListProperty()
list_append = []
list_append.append(a)
list_append.append(b)
list = list_append
in your .kv:
Spinner:
values: root.list
Spinner will have a and b as entry.
Did exactly the same and didn't work
Then you didn't do exactly the same.
first like, first viewer
Awesome!
Great
thanks
kivy mondays or tuesdays ?? 🤔
mondays, but this one was a holiday
Can we do this in Tkinter?
This is basically the tkinter version:
ruclips.net/video/OPUSBBD2OJw/видео.html
@@Codemycom Thanks❤️
Hey John, how would you change the background colour of the elements present in the spinner dropdown?
pygame ??
soon
how can I access ids inside other ids?
don't know what you mean