I'm trying to use the following 'with' binding in knockout:
<td data-bind="with: $data.tiers()[$parents[1].Index]">
...
</td>
But I'm getting the error "Unexpected token );". If I just use $data.tiers()[0]
it works, and I know that $parents[1].Index
evaluates to a number. Is this just a limitation of knockout, that you can't use nested index accessors?