ko.mapping を使用してマッピングされた次の JSON オブジェクトがあるとします。
{ AllowNotifications: ko.observable(true) }
ブール値をラジオ ボタンにバインドして、True の場合は一方のラジオがチェックされ、False の場合はもう一方のラジオがチェックされるようにします。
<input data-bind="checked: AllowNotifications" type="radio" name="allowNotifications" value="true"><label class="small positive" for="objectNotifications_true">Yes</label>
<input data-bind="checked: AllowNotifications" type="radio" name="allowNotifications" value="false"><label class="small negative" for="objectNotifications_false">No</label>
現在、エラーはスローされませんが、これは適切にバインドされません。なぜこれが機能しないのですか?