I want to access data with key name as [Measure].[item0] as the key names and when i access this in my html it gives error like json is ine format "[Measure].[item0]":"45" my code for accessing this is
<div ng-repeat="item in allItems ">
<div >{{item.([Measures].[Item0])}}</div>
</div>
I have tried this using braces and paranthesis also byenclosing it in () and [] i just want to know that how to access the key name with full stop
{{ item["[Measures].[Item0]"] }}
? – bmleite Sep 2 '14 at 10:17