.configure of Row and Column Atribute
Hello, I found during building the table that in the .configure I cannot configure the "row" and "column" atribute. maybe it would be that code currently is:
but Atribute it self is without "s"
Shouldn't this help?:
Unfortunatelly there is still issue (I created another test and found that closing was wrong) as if I set Values inside .self of CTkTable it is working, but in the case I need to .configure it is not working.
Here is my code for testing:
import customtkinter
from CTkTable import *
root = customtkinter.CTk()
value = [
"Lunch",
"Private",
"Teambulding",
"Teambuilding",
"Home Office",
"Car Blocker",
"Grilovačka",
"Christmas party",
"Deadline pro TimeSheet",
"KONTROLA DOCHÁZKY",
"Save the date ",
"On-Call Duty",
"TimeSheets - Upload"]
Show_Skip_Events_list = []
for skip_Subject in value:
Show_Skip_Events_list.append([skip_Subject])
# Working code
table1 = CTkTable(master=root, column=1, row=len(value), values=Show_Skip_Events_list)
table1.pack(expand=True, fill="both", padx=20, pady=20)
# Not Working code
table2 = CTkTable(master=root)
table2.configure(columns=1, rows=len(value), values=Show_Skip_Events_list)
table2.pack(expand=True, fill="both", padx=20, pady=20)
root.mainloop()
it always ended here:
Error:
Traceback (most recent call last):
File "d:\KM-Calendar_Reading\test.py", line 32, in