On Sun, 3 Jun 2007, Kevin Walzer wrote:
> I'm trying to figure out why this code packs a label at the bottom of the
> window, instead of in the specified tablelist cell:
> package require tablelist
> tablelist::tablelist .t -columns {0 "First Column" 0 "Another column"}
> -stretch all -background white
> pack .t
> .t insert end [list "first row" "another value"]
> .t insert end [list "another row" "bla bla"]
> proc makelabel {} {
> label .l -text "Test" -bg blue
> pack .l
> }
> .t cellconfigure end,1 -window [makelabel]
proc makelabel {tbl row col w} {