in reply to Re: about liststore treeview of tkx
in thread about liststore treeview of tkx

you are right.gtk2 glade is under.But I saw the Tkx :: ttk__treeview (): Reference:http://www.tkdocs.com/tutorial/tree.html#adding

Replies are listed 'Best First'.
Re^3: about liststore treeview of tkx
by jellisii2 (Hermit) on Jan 29, 2014 at 17:19 UTC
    Would need to see code to understand what's wrong. While I haven't used TreeView specifically, tkdocs has been very good with everything else I've looked up.
       $liststore1->set($liststore1->append,1, "12", 2, "12"); Above this code is not shown. Why? Thank you very much to answer ===========================================
      use warnings; use Glib qw{ TRUE FALSE }; use Gtk2 '-init'; my $builder; my $window; # get a new builder object $builder = Gtk2::Builder->new(); $builder->add_from_file( "test.glade" ) or die "Error loading GLADE file"; $window = $builder->get_object( "window1" ) or die "Error while creating Main Window"; $liststore1 = $builder->get_object( "liststore1" ); $liststore1->set($liststore1->append,1, "12", 2, "12");
        That's not using Tkx. I haven't played with Gtk enough to speak to it.