Dynamic Multiview

I have a json which contains a dictionary of lists and I want to show the information in multiview/tabview. Basically the keys are the tabs and the values are the list shown when you click the tab. Is there a way to do that???
Sample of my data:

[
{
“Key”: “sss”,
“Value”: [
{
“count”: 1,
“status”: “In Progress”,
“username”: “ssssss, skjsk”
},
{
“count”: 21,
“status”: “Open”,
“username”: “B, R”
}
]
},
{
“Key”: “gs”,
“Value”: [
{
“count”: 13,
“status”: “On Hold”,
“username”: “sff, fv”
},
{
“count”: 14,
“status”: “Waiting On Others”,
“username”: “B, M”
},
{
“count”: 1,
“status”: “Open”,
“username”: “Brr, ddd”
}
]
},
{
“Key”: “Rus”,
“Value”: [
{
“count”: 2,
“status”: “Open”,
“username”: “h, lay”
},
{
“count”: 4,
“status”: “Open”,
“username”: “Sayr, d”
},
{
“count”: 1,
“status”: “Waiting On Others”,
“username”: “S, y”
},
{
“count”: 1,
“status”: “In Progress”,
“username”: “Sd, hjs”
}
]
}
]

So there should be automatically 3 tabs named ‘sss’, ‘gs’, ‘Rus’, each tab having the value as information in a normal list form.

Is this possible??

Hello,

You may consider Webix grouplist http://webix.com/snippet/2879c7af.

Its documentation is located at http://docs.webix.com/desktop__grouplist.html.

Perfect. Thanks