I have something similar to the following html:
<table>
<tbody data-bind="foreach: { data: items, afterRender: alternateRowColor }">
<!-- ko if: isNew() -->
<tr>
<td><input data-bind="text: prop"/></td>
</tr>
<!-- /ko -->
<!-- ko if: !isNew() -->
<tr>
<td data-bind="text: prop"/></td>
</tr>
<!-- /ko -->
</tbody>
</table>
With a collection of objects which are defined as follows:
function NewItem() {
this.prop = ko.observable(0);
this.isNew = ko.observable(true);
}
function Item(prop) {
this.prop = prop;
this.isNew = ko.observable(false);
}
The "Items" are from the server and the "NewItems" are added when a user clicks a link. The idea is simply to have an input box for new items, but just a display for existing items. This seems to work fine for existing items (when isNew is false), but when isNew is true, both sets of markup render (two rows are added, one editable followed by one display only). I would expect only the first "tr" to render if isNew is true. Does anyone know what is happening here?