Questions tagged [tktable]

Extension widget to the Tcl's Tk widget toolkit. There are wrapper libraries with the same name for Python and possibly other programming languages.

17 questions
0
votes
0 answers

_tkinter.TclError: invalid command name "table"

I tried to use tktable package to create table and show my data. However, I could not make it work. import Tkinter import tktable root = Tkinter.Tk() table = tktable.Table(root, rows=10, cols=4) table.pack(side="top", fill="both",…
Dogod
  • 283
  • 5
  • 12
0
votes
1 answer

Display table in a Tcl Tk window with R

I want to display data frame table in a new window using Tcl Tk tool. ´tktable´ must be the solution but I don't know how to use it with data frame. Can anyone show me how?
David
  • 4,785
  • 7
  • 39
  • 63
1
2