Fwd: [Solved] Re: GtkTreeView does not show data after clear()

2016-12-21 Thread David Lowrence
-- Forwarded message -- From: David Lowrence Date: Tue, Dec 13, 2016 at 6:16 PM Subject: [Solved] Re: GtkTreeView does not show data after clear() To: Torsten Schoenfeld On Sun, Dec 11, 2016 at 1:45 PM, Torsten Schoenfeld wrote: > On 26.11.2016 17:09, David Lowrence wr

Re: GtkTreeView does not show data after clear()

2016-12-11 Thread Torsten Schoenfeld
On 26.11.2016 17:09, David Lowrence wrote: > When the program runs, the data is displayed on the first pass, but > on the second, it's not. I edited the program changing "Gtk3" to > "Gtk2" and changed the version requirement in the Glade file, and the > data displays on both passes. I cannot repro

Re: GtkTreeView does not show data after clear()

2016-11-26 Thread David Lowrence
Sorry for breaking the thread but I wasn't subscribed when I posted and got the replies. On Fri, 25 Nov 2016 20:58:40 Torsten Schoenfeld said: On 22.11.2016 02:35, David Lowrence wrote: Of course AFAIK, there is no documentation as of yet for Gtk3-Perl, and I could be using some incorrect code,

Re: GtkTreeView does not show data after clear()

2016-11-25 Thread Daniel Kasak
You might want to check out one of my projects - Gtk3::Ex::DBI. Example constructor: $self->{param} = Gtk3::Ex::DBI::Datasheet->new( { dbh => $self->{globals}->{connections}->{CONTROL} , sql => { select

Re: GtkTreeView does not show data after clear()

2016-11-25 Thread Torsten Schoenfeld
On 22.11.2016 02:35, David Lowrence wrote: > Of course AFAIK, there is no documentation as of yet for Gtk3-Perl, and > I could be using some incorrect code, but I truly feel that there's a > bug in the Gtk3 code that is doing this. Well, as always, the C docs are relevant. Plus, there is "perli11

GtkTreeView does not show data after clear()

2016-11-25 Thread David Lowrence
I'm writing a program in gtk3-perl and am experiencing a problem with a TreeView that does not display a second load of data after a clear(). FWIW, I'm doing a customer search, and this sub is run if there are multiple results from a search on a name. I am including the code below where this happ