tkcalendar icon indicating copy to clipboard operation
tkcalendar copied to clipboard

Calendar widget for Tkinter

Results 49 tkcalendar issues
Sort by recently updated
recently updated
newest added

Tkinter widgets should return a dictionary of all properties and their corresponding (argvName, dbName, dbClass, default, value) tuple when `configure` is called without arguments. If a string is passed to...

Sample buggy code: tkcalendar v1.6.1 ``` from datetime import date, datetime from tkinter import Tk from tkcalendar import Calendar today = datetime.now() app = Tk() cal = Calendar( master=app, showweeknumbers=False,...

Hi, I'm having trouble with treeview and dateentry as treeview happens to resize once dateentry is put on a grid (especially in toplevel) Please see below code to see my...

as described in the comment. `"""Return the content of the DateEntry as a datetime.date instance."""`

https://github.com/j4321/tkcalendar/blob/0c6aa7cb4ee1e583bdf0faec62f99f760f192895/tkcalendar/dateentry.py#L313 creating a subclass of DateEntry causes this error: ``` class cDateEntry(DateEntry): def __init__(self, master, **kwargs): kw_wid, kw_pak = pack_opts(**kwargs) # splits widget keywords from pack keywords for single line...

When you click on a day of the previous mounth, the correct behavior is that you display the previous month, it's working fine except in the following case: the case...

OS: Windows 10 Python Version: 3.9 IDE: Thonny 3.3.14 TKCalendar Version: 1.6.1 Hello together, I hope that there is still some development/bug fixing of the nice TKCalender module. During implementation...

Running Python 3.7.3 on macOS (installed with Homebrew), the DateEntry widget doesn't appear when the arrow is clicked. Dates can still be manually entered in the field as if it...

upstream bug

In release 1.6.1 the DateEntry widget does not forward name argument at init. Therefore all DateEntry widget has a name like '.!DateEntry' To fix this, you need to add the...

DateEntry(prodfrm, width= 16,bd=2, date_pattern='yyyyMMdd') Other variants attempted: DateEntry(prodfrm, width= 16,bd=2, date_pattern='yyyy-MMdd') DateEntry(prodfrm, width= 16,bd=2, date_pattern='yyyyMM-dd') Succeeds: DateEntry(prodfrm, width= 16,bd=2, date_pattern='yyyy-MM-dd') Error message: Exception in Tkinter callback Traceback (most recent call...