2010-12-09 8 views

Antwort

1

Ich habe die Lösung gefunden. Durch Hinzufügen des Namensattributs mit dem gleichen Wert (name="planetType", siehe unten) für alle Optionsfelder in der Gruppe wird IE auch glücklich sein ...

<label><input type="radio" value="all" data-bind="checked: typeToShow" name="planetType" />All</label>  
<label><input type="radio" value="rock" data-bind="checked: typeToShow" name="planetType"/>Rocky planets</label>  
<label><input type="radio" value="gasgiant" data-bind="checked: typeToShow" name="planetType"/>Gas giants</label>