is it possible to use a predicate value for an ng-bind statement.
For example, I want to bind a td element that will change the property it displays dynamically.
<td ng-bind="user.month"></td
What if I wanted to change that element binding dynamically to
<td ng-bind="user.week"></td>
What would be the best way to achieve this. I'd have a select element that determines which predicate should be used for binding.