I am updating template’s model in Controller. The model data is in the form
{
"key1": "value1",
"key2": [
{
"in1": "val1",
"in2": "val2"
},
{
"in1": "val3",
"in2": "val4"
}
]
}
After updating the model through controller, key1 value is refelcted in template. But Key2 values wrapped inside {{#each}} {{/each}} is not get reflected.
JsBin link: http://jsbin.com/dahehonagufi/3/edit
Kindly assist me what i am doing wrong here… asap