Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: how to change Tk::Tree data value

by Sandy (Curate)
on Jun 15, 2011 at 14:33 UTC ( [id://909791]=note: print w/replies, xml ) Need Help??


in reply to how to change Tk::Tree data value

If you set your data to an anonymous hash, you can adjust it as required.
$tree->add('1.1',-text=>'aaa',-data=>{-info=>'aaa'});
then
# get data my $d=$tree->infoData('1.1'); # change data $d->{-info}='new data';
Next time you get the infoData, it will have your new information.

UPDATE!

or you can use entryconfigure

# set entry $tree->add('1.1',-text=>'aaa',-data=>'aaa'); # change data for entry $tree->entryconfigure('1.1',-data=>'new data');

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (6)
As of 2024-04-19 11:38 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found