checkbox

Customtkinter checkboxes are not starting at the same x axis

Customtkinter checkboxes are not starting at the same x axis Question: I want to make a python todo app with customtkinter. When i create a checkbox which has a longer text everytime something goes wrong and for something they just go away. Here is my code so far: from customtkinter import * from tkinter import …

Total answers: 2

How to click on checkbox filter with selenium Python?

How to click on checkbox filter with selenium Python? Question: I’m trying to click on a checkbox filter on a website with selenium python. This is a part of its HTML code linked to one of the checkbox options. <div class="shopee-checkbox" bis_skin_checked="1"> <label class="shopee-checkbox__control"> <input type="checkbox" name="" value="Jabodetabek"> <div class="shopee-checkbox__box" bis_skin_checked="1"> <i> </i> </div> <span class="shopee-checkbox__label">Jabodetabek</span> …

Total answers: 2

Resize scroll for checkbox tkinter

Resize scroll for checkbox tkinter Question: After several tests and help received, I managed to get the code for a scroll with several checkboxes inside. My current problem is that the scroll is much larger than the space it needs and in general I can’t change its size to my liking. This is my code: …

Total answers: 2

Tkinter: How to default-check the checkbuttons generated by for loops

Tkinter: How to default-check the checkbuttons generated by for loops Question: Before posting this question, I referred to the previously posted answer. If you were looking for a default check method, I dare to advise for you refer to the following link:Tkinter: is there way to check boxes by default? I try to set the …

Total answers: 1

How to work with MultipleCheckBox with Django?

How to work with MultipleCheckBox with Django? Question: I’m new to Django and I’m trying to make an application that registers the attendance of entrepreneurs (I’m currently working on this). There are some services that I would like to select, sometimes the same person requires more than one service per appointment. However, part of the …

Total answers: 1

How to increase Checkbutton size – Tkinter

How to increase Checkbutton size – Tkinter Question: Is it possible to enlarge the tiny check box of the Checkbutton object? The size is out of proportion when increasing the text size. I searched through the following link (Checkbutton) and can’t find anything about the actual size of the box. Thank you for your help. …

Total answers: 2

Tkinter: is there a way to check checkboxes by default?

Tkinter: is there a way to check checkboxes by default? Question: I have this piece of code that will create a simple checkbox : from Tkinter import * CheckVar = IntVar() self.checkbutton = Checkbutton(self.root, text = “Test”, variable = CheckVar) However this checkbox in unchecked by default and I’m searching for a way to check …

Total answers: 6

Get the value of a checkbox in Flask

Get the value of a checkbox in Flask Question: I want to get the value of a checkbox in Flask. I’ve read a similar post and tried to use the output of request.form.getlist(‘match’) and since it’s a list I use [0], but it seems I’m doing something wrong. Is this the correct way to get …

Total answers: 3

Handle Multiple Checkboxes with a Single Serverside Variable

Handle Multiple Checkboxes with a Single Serverside Variable Question: I have the following HTML code: <form method=”post”> <h5>Sports you play:</h5> <input type=”checkbox” name=”sports_played” value=”basketball”> basketball<br> <input type=”checkbox” name=”sports_played” value=”football”> football<br> <input type=”checkbox” name=”sports_played” value=”baseball”> baseball<br> <input type=”checkbox” name=”sports_played” value=”soccer”> tennis<br> <input type=”checkbox” name=”sports_played” value=”mma”> MMA<br> <input type=”checkbox” name=”sports_played” value=”hockey”> hockey<br> <br> <input class=”btn” type=”submit”> </form> …

Total answers: 4