in reply to Re^6: Extensibility of Tk::TableMatrix
in thread Extensibility of Tk::TableMatrix
will insert at index 'end' a row into tablelist, values are "row $hh;" and "$hh bla bla" into each of 2 cells appropriately$w_t->insert('end', ["row $hh;", "$hh bla bla"]);
this comes into play after seeing sample code at http://wiki.tcl.tk/5527
Also, Tkx is another way of doing tcl/tk from perl, and for both of these there is a mailing list tcltk@perl.org, which will help you set up and use these approaches.t insert end [list "first row" "another value"] .t insert end [list "another row" "bla bla"]
Regards,
vkon
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^8: Extensibility of Tk::TableMatrix
by elef (Friar) on Feb 09, 2011 at 13:25 UTC | |
by vkon (Curate) on Feb 09, 2011 at 13:33 UTC |