Foros de discusión

Fancy tree in jsp

Madasamy P, modificado hace 7 años.

Fancy tree in jsp

Junior Member Mensajes: 90 Fecha de incorporación: 27/07/16 Mensajes recientes
My Json ,

SOURCE = [

{title: "Client Name", foo: "a",folder: true,expanded: true, children: [
{title: "Book Name", foo: "b",folder: true,expanded: true, children: [
{title: "Chapter Name", foo: "c",folder:true,expanded: true,children:[
{title:"Art",foo:"f",folder:true},
{title:"Indesign",foo:"f",folder:true},
{title:"Manuscript",foo:"f",folder:true},
{title:"Miscellaneous",foo:"f",folder:true}

]},
{title: "chapter2", foo: "d"},
{title: "chapter3", foo: "e"}
]},
]},

];


How to display this json into Tree Structure using Fancy Tree method

Thanks in advance