Reputation: 10243
Within my template in tbody below, how can I access the index of the item being rendered?
<table>
<tbody data-bind="foreach:contacts">
<tr class="contactRow" valign="top">
<td><a href="#" data-bind="click: function(){viewModel.removeContact($data)}">Delete</td>
<td><input data-bind="value: FirstName" name="Contacts[].FirstName"/></td>
<td><input data-bind="value: LastName" name= "Contacts[].LastName" /></td>
<td><input data-bind="value: Username" name="Contacts[].Username"/></td>
<td><input data-bind="value: Email" name="Contacts[].Email"/></td>
</tr>
</tbody>
<thead>
<tr>
<th>Controls</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
<th>Email</th>
</tr>
</thead>
</table>
Upvotes: 16
Views: 19713
Reputation: 114792
Update: $index
is now available in KO 2.1.
Currently, there is not a way to directly access the index in a foreach
. There is a pull request that looks at adding a $index
variable here: https://github.com/SteveSanderson/knockout/pull/182
An option that I have used in the past is to use a manual subscription against an observableArray that keeps an index observable in sync.
It works like:
//attach index to items whenever array changes
viewModel.tasks.subscribe(function() {
var tasks = this.tasks();
for (var i = 0, j = tasks.length; i < j; i++) {
var task = tasks[i];
if (!task.index) {
task.index = ko.observable(i);
} else {
task.index(i);
}
}
}, viewModel);
Here is a sample: http://jsfiddle.net/rniemeyer/CXBFN/
Upvotes: 17
Reputation: 71
I believe it gets easier with KO 2.1: you can use $index in the foreach loop to refer to the current index.
https://github.com/downloads/SteveSanderson/knockout/knockout-2.1.0.js
documentation: http://knockoutjs.com/documentation/binding-context.html
Upvotes: 4
Reputation: 1795
I'm doing this and it's working pretty well. Not the best looking, but keeps everything in order:
Use the attr: binding to set the name attribute of your field and then use $parent.CallForwards.indexOf($data)
to get your index.
data-bind="value: Name, attr: {name: 'CallForwards[' + $parent.CallForwards.indexOf($data) + '].Name'}"
Upvotes: 6