Tuesday, May 28, 2013

How to alert a treepanel's node text

Took me awhile to find on stack overflow, but here's how you access the node's text
itemclick: function(s,r) {
                alert(r.data.text);
        }

No comments:

Post a Comment