Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Yahoo Tree jMaki widget for Phobos (See related posts)

Yahoo Tree jMaki widget for Phobos

<% 
 library.jmaki.insert(
    {
    component : "yahoo.tree" ,
    value : {
        root : {
                title : 'Default Tree Root Node',
                expanded : true,
                children : [
                    { 
                        title:'Node 1.1',
                        onclick :{url:'foo'}
                    },
                    { 
                        title :'Node 1.2',
                        children :[
                            { 
                                title :'Node 3.1'
                            }
                        ]
                    }
                ]
        }
        }   
    }
    );%> 


You need to create an account or log in to post comments to this site.


Click here to browse all 4834 code snippets

Related Posts