I tried simple repeatable from standard examples "samples/repeatable/simple/repeatable.htm" and changed JSON to have nested properties:
Repeater stops to work on nested properties :(
<ul #products repeatable>
<li><output|text(product) /> <output|currency(nested.price) /></li>
</ul>
"+plus" has the same behaviour - once you get nested data - it stops showing it.
How to bind nested properties in "repeater" and "+plus"?
<textarea #json>[ { product:"Apple", price: 0.95, nested: {price: 0.95, b: 2} }, { product:"Orange", price: 0.75, nested: {price: 0.95, b: 2} }, { product:"Pear", price: 1.25, nested: {price: 0.95, b: 2} }, ];</textarea>
Repeater stops to work on nested properties :(
<ul #products repeatable>
<li><output|text(product) /> <output|currency(nested.price) /></li>
</ul>
"+plus" has the same behaviour - once you get nested data - it stops showing it.
How to bind nested properties in "repeater" and "+plus"?