Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
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 pondering the Monastery: (5)
As of 2025-07-07 22:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found

    Notices?
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.