AngularDart: ng-repeat filter update
I am trying to apply a filter to ng-repeat
. But it doesn't update when my model changes.
<th ng-repeat='column in cmp.columns | filter {visible:"true"}'> {{column.title}} </th>
I am getting columns through the future in my component, if that matters.
cols.getColumns().then ((columns){ this.columns = columns; })
+3
source to share