yyqdian has asked for the wisdom of the Perl Monks concerning the following question:

I want the results of the query are displayed to the treeview table. I made reference to the site: http://www.tkdocs.com/tutorial/tree.html#adding Come to my code:
use Tkx; Tkx::wm_title(".", "Feet to Meters"); Tkx::ttk__frame(".c", -padding => "3 3 12 12"); Tkx::grid( ".c", -column => 0, -row => 0, -sticky => "nwes"); Tkx::grid_columnconfigure( ".", 0, -weight => 1); Tkx::grid_rowconfigure(".", 0, -weight => 1); Tkx::ttk__treeview(".c.tree"); Tkx::grid( ".c.tree", -column => 1, -row =>3, -sticky => "w");
================================================

The question is how the content is displayed in treeview above?

Replies are listed 'Best First'.
Re: Who can give an example of Tkx :: ttk__treeview to me? ( Object Style)
by Anonymous Monk on Jan 29, 2014 at 23:59 UTC
      Tk is old, and is a butchered dead end fork of TK from 15 years ago that separated Tk from the Tcl interp. Tkx is an marshalling bridge to a real Tcl/Tk engine. All bug fixes in Tcl/Tk interp automatically appear in Tkx. So do all new APIs.

        bulk88 says: Tk is old, and is a butchered dead end fork of TK from 15 years ago that separated Tk from the Tcl interp. Tkx is an marshalling bridge to a real Tcl/Tk engine. All bug fixes in Tcl/Tk interp automatically appear in Tkx. So do all new APIs.

        boring and not relevant at all , and not a reason to learn Tkx

        Even if everything you said about Tk is 100% true, and even if it were 100% important, Tk is still a milion times better than Tkx -- Tkx is the worst possible option

        I've seen you remark on Tkx before, but I've not seen you write any Tkx code for people (or Tk for that matter)

        Anyway, the OP is struggling with the basics, he won't be able to discover any of these bugs you speak of , that are irrelevant for most Tk users