我使用淘汰賽與MVC 4.我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>
...
我KO:
...
self.isActive = ko.observable(product.isActive);
...
它更新數據庫中正確,但它在頁面加載時不顯示任何單選按鈕。我也嘗試使用checked =「checked」html屬性,它也不起作用。有什麼建議?
是'product.isActive'可觀察的嗎? – Thewads 2013-05-02 14:19:06