Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re^3: perl/gtk2 simplelist

by The Mad Hatter (Priest)
on Dec 06, 2004 at 21:19 UTC ( [id://412758]=note: print w/replies, xml ) Need Help??


in reply to Re^2: perl/gtk2 simplelist
in thread perl/gtk2 simplelist

(Minor nit: it's not a command. It's accessing an array reference. Read up on Perl data structures.)

$slist->{data} is an array reference of other array references (the "rows" in the list) each item of which is a piece of data (the "columns" in each row). Fiddle about with this:

for my $row (@{$slist->{data}}) { print "Row:\n"; for my $col (@{$row}) { print " $col\n"; } }
or use Data::Dumper to visualize the data structure in a more Perlish way:
use Data::Dumper; print Dumper($slist->{data}), "\n";

(Untested code.)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://412758]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (4)
As of 2024-03-29 11:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found