I am trying to add a checkbox to customtkinter table widget which is CTkTable but I don’t know how to get it inside. the first row have to be all list of checkboxes
def checkbox_event():
print("checkbox toggled, current value:", check_var.get())
check_var = StringVar(value="on")
checkbox = CTkCheckBox(master=scrollable_frame_search, text="CTkCheckBox",
command=checkbox_event, variable=check_var, onvalue="on", offvalue="off")
#table for show
value = [['SELECT','TITLE','DOWNLOAD'], [1,2,3], [1,2,3], [1,2,3], [1,2,3]]
table = CTkTable(master=scrollable_frame_search, row=3, column=3, values=value, header_color='gray',corner_radius=4)
table.pack(expand=True, fill="both")