user1022241
user1022241

Reputation:

Simple JS tree data structure representation

I need to build a simple UI for representing a JSON data structure that follows a model similar to:

{ 
    person1 {
        name: 'Dan',
        address: {
            work: '9523 Pinehurst',
            home: '1234 foobar way'
        }
    },
    person2 {
        name: 'Paul',
        address: {
            work: '5432 Loop Street',
            home: '432 linux drive'
        }
    }
}

I need to support dynamic adding and deleting of categories, and dragging / droppping categories, such as moving the work address from person1 to person2. Any suggestions?

I tried using a dojo tree control but it got way too complex for what I'm trying to accomplish. This is just an entirely client-side demo application. Thanks!

Upvotes: 0

Views: 2144

Answers (1)

Anderson Carniel
Anderson Carniel

Reputation: 1771

I use the dynatree. It is a plugn of JQuery for support dynamic treeview in javascript. Very simple your use.

Dynatree

Hope this helps

Upvotes: 1

Related Questions