Entry
Can I make something like jtable with tkinter?
Aug 22nd, 2000 00:58
unknown unknown, udo apolloner, Richard Chamberlain
A jTable is a very powerful widget enabling you to have graphics and
text in each cell. At the moment there isn't anything like that in Tk.
The closest you would come is if you created a window filled with
canvases, or just entries if you were only interested in text. You would
find an issue with the number of widgets and speed, so you would have to
find a way to only display those widgets that were currently onscreen.
All in all not very practical. Two solutions spring to mind, (a) use
wxPython they have a nice wxGrid control or (b) See what the next
release of either tcl/tk brings.