I have 3 columns, the first is text, the second are checkbuttons, and the last are comboboxes. Could someone tell me how I can populate the comboboxes using only data added to the child list? Below is the code I have so far:
Code:
treestore = gtk.TreeStore(str, bool) for imol in molecule_number_list(): mol_name = molecule_name(imol) piter = treestore.append(None, [mol_name, True])
Leave a comment: