2
Ich habe in einer foreach-Schleife, klicken Sie enthalten Bindung wie folgt aus:Klicken Sie binden automatisch in Knockout Ausführung Foreach
<tbody data-bind="foreach: locationConfigSet">
<tr>
<td data-bind="text: address"></td>
<td><a data-bind="attr: {href: 'http://maps.google.com/maps?z=12&t=m&q=loc:' + latitude + '+' + longitude}" target="_blank" class="btn btn-primary btn-xs">Map</a></td>
<td data-bind="text: allowance"></td>
<td><button class="btn btn-danger btn-xs" data-bind="click: $parent.deleteconfig($data)">Delete</button></td>
</tr>
</tbody>
Aber die Funktion DeleteConfig wird immer, sobald die Seite ausgeführt wird geladen (ohne Klick) in eine Schleife, bis sie exakt zu den gleichen Zeiten ausgeführt wird wie die foreach-Schleife.
Vielen Dank. Habe diesen Teil total vermisst. Das hat funktioniert – deDishari