in reply to Listbox with independently updating labels on items

So you're looking for something like Tk::Table?

http://docs.activestate.com/activeperl/5.16/lib/Tcl/tkkit.html -> http://docs.activestate.com/activetcl/8.5/tktable/tkTable.html

  • Comment on Re: Listbox with independently updating labels on items

Replies are listed 'Best First'.
Re^2: Listbox with independently updating labels on items
by v4169sgr (Sexton) on Oct 04, 2013 at 09:33 UTC

    Thanks! Yes, this looks as though it may work for me.

    Can it be used with x- and y- scrollbars, similar to listboxes?

    Does one access this table functionality via (for example) ...

    Tkx::package_require("Tktable"); my $t = $mw->new_tk__table(-rows => 5, -cols => 3);

    I believe the -selecttype => row and -state => disabled may suit my requirements best.

    How would I populate row and column titles?