This is how I render the cases ObservableArray in my view
<ListView [items]="cases" class="list-group" *ngIf="cases">
<ng-template let-case="item">
Say cases has these values:
cases = [{id: 1, name: "Sam"}, {id: 2, name: "Romio"}]
How can I get my ListView to re-render or somehow update the view when I update the first item like this?
cases[0]["name"] = "Michael"