Let's say I have an array of Ids, and For each Id I would like to create a Tree List and bind the data with the given ID. I was wondering what are the ways to achieve it. Especially the columns are identical but how to provide the configuration settings for each dynamically created Tree Lists.
{
"id":"1",
"data": "hello",
"status": "inProgress"
},
{
"id":"1",
"data": "hello",
"status": "inProgress"
},
{
"id":"1",
"data": "hello",
"status": "inProgress"
},
{
"id":"2",
"data": "hello",
"status": "inProgress"
},
{
"id":"2",
"data": "hello",
"status": "inProgress"
}
Here all the Id 1 data will be part of one tree List and the ones with Id 2, will be part of another List.
Thanks,
Sibin S