私は MVC 4 で Knockout を使用しています。私の cshtml は次のとおりです。
...
<span>@Html.RadioButtonFor(m => m.isActive, true, new { @class = "statusRadioButton", data_bind = "checked: isActive" })</span>
<span>@Html.RadioButtonFor(m => m.isActive, false, new { @class = "statusRadioButton", data_bind = "checked: isActive" })</span>
...
私のコ:
...
self.isActive = ko.observable(product.isActive);
...
データベースは正しく更新されますが、ページがロードされたときにオンになっているラジオ ボタンが表示されません。また、checked = "checked" html 属性を使用してみましたが、どちらも機能しません。何かアドバイス?