I need help displaying json whos structure is like this in angular-js selector. I am a new to angular and and help displaying this as a drop down and making it a searchable is welcomed.
[
{
"id":1,
"name":"something1",
"displayName":"something1",
"children":[
{
"id":9,
"name":"something1Child1",
"displayName":"something1/ something1Child1",
"children":[
],
"typeId":1,
"parentId":1
},
{
"id":10,
"name":"something1Child2",
"displayName":"something1 / something1Child2",
"children":[
],
"typeId":1,
"parentId":1
}
]
}
{
"id":2,
"name":"something2",
"displayName":"something2",
"children":[
]
}
]