Re: [Tkinter-discuss] Treeview with a single column header

2011-04-06 Thread Emiliano Gavilán
... The problem is that the title puts me in a second column and the data in the first. The 'text' option of the insert method is for the tree column. To insert values on the other columns use the 'values' option, or the set method after the item is inserted. You can also control whether the

Re: [Tkinter-discuss] Treeview with a single column header

2011-04-06 Thread craf
-Mensaje original- De: Emiliano Gavilán emilianogavi...@gmail.com Para: tkinter-discuss@python.org Asunto: Re: [Tkinter-discuss] Treeview with a single column header Fecha: Wed, 6 Apr 2011 17:49:09 -0300 ... The problem is that the title puts me in a second column and the data

[Tkinter-discuss] Treeview with a single column header

2011-04-05 Thread craf
I'm testing the treeview widget, and I want to display data in a single column with a header. My code to do this is: --CODE--- import Tkinter import ttk master = Tkinter.Tk() tabla = ttk.Treeview(master, columns=('widgets')) tabla.heading('widgets', text='Item') tabla.pack()