CTkScrollableDropdown
CTkScrollableDropdown copied to clipboard
Easily add a new scrollable dropdown menu in customtkinter widgets (extension/add-on)
I have my TopLevel using grab_set to avoid it getting behind the main window. But it was causing that when I clicked to select an option on the combobox, it...
Hi @Akascape, I've noticed that when adding a command to the dropdown the command executes but the dropdown no longer updates showing the user which value was selected. For example:...
I have made a small program and I have used CTk SCrollable Dropdown, if I use it on the main screen (ctk.CTk) the control works fine but if I use...
Hi @Akascape, Please check the following. **Bug Description:** The dropdown only displays below the `CTkOptionMenu` / `CTkComboBox`. ``` def place_dropdown(self): self.x_pos = self.attach.winfo_rootx() if self.x is None else self.x +...
Hi @Akascape, Here is a short example using `CTkScrollableDropdown` ``` from CTkScrollableDropdown import * import customtkinter root = customtkinter.CTk() customtkinter.CTkLabel(root, text="Select your favorite month").pack(pady=5) values = ['January', 'February', 'March', 'April',...
If you type too quickly in the autocomplete live search, the letters appear in the wrong order and take a long time to appear.
Hi, I'm a 22 year old mechatronics jr., I don't know much about object oriented programming but I made a proposal to make an automated search engine in Python for...
Hello, To keep my child windows in front of my parent window I use the following lines in my child window class: `self.grab_set() # hijack all commands from the master...
I was testing both CTkScrollableDropdown and CTkScrollableDropdownFrame. CTkScrollableDropdownFrame is faster than CTkScrollableDropdown, so I decide to use it. However, CTkScrollableDropdownFrame has a bug with place_dropdown. If I have my CTkOptionMenu...