I am trying to create a treeview like structure from JSON data. Structure is quite simple, but the problem I am getting is while grouping the children under particular parents.
For example,
Input JSON data is :{'record':[{'sn':'Demo Sheet 1','vn':'Demo View 1'},{'sn':'Demo Sheet 11','vn':'Demo View 12'},{'sn':'Demo Sheet 2','vn':'Demo View 21'},{'sn':'Demo Sheet 1','vn':'Demo View 13'}],'recordcount':'4'}
Now, I want to display this data in below format :
- Demo Sheet 1
- Demo View 11
- Demo View 12
- Demo View 13
- Demo Sheet 2
- Demo View 21
In HTML, I have created a div like <div id="treeview"></div>.
Now using javascript I have to populate this div's innerHTML with the treeview list.
UPDATE : Count of Number of child Items should be displayed in the brackets of Parent Item, e.g. Demo Sheet 1 (3)
Any help to achieve this will be highly appreciated.
Thanks,
manishekhawat
<div>? I think nested<ul>elements would make much more semantic sense. – Chris Francis Dec 19 '11 at 11:58