I have a grid to which I bind some data using a datasource . My problem is that my json objects have some nested arrays inside and I want that when you click on the edit button I should be able to see that array in a list.
How do I get that collection to be displayed in my edit template so that I can add or delete items.jsfiddle example
{
id : "1",
name : "Ted",
collection : [ { id :"1" , name : "Picture 1 "}, { id :"2" , name : "Picture 2 "}]
}
How do I get that collection to be displayed in my edit template so that I can add or delete items.jsfiddle example