I'm developing a simple Python stand-alone application, that uses a GUI datePicker, and I went for using 'from tkcalendar import DateEntry'. | using python 2.7 (for older windows PC)
while using 'DateEntry - Date Picker', I not able to find a few major things, even the documentation doesn't explain on this. I went through these:
- https://tkcalendar.readthedocs.io/en/stable/DateEntry.html#
- https://tkdocs.com/shipman/
- https://www.plus2net.com/python/tkinter-DateEntry.php
I'm looking ways to
- Change width of Widget
- open widget on click of entry/input bar (not only drop-down arrow)
DateEntry(window, date_pattern='yyyy-MM-dd', width= 67, background=CONST.TITLE_BG_COLOR, bad=2)
Any suggestion, references and even alternative are appreciated. Thanks.
