我submit.cshtml
的是:
<table id="scDetails" class="table">
<thead>
<tr>
<th>Item</th>
<th>IsChecked</th>
<th>Comment</th>
</tr>
</thead>
<tbody>
@Html.EditorFor(m => m.Fbacks)
</tbody>
</table>
EditorTemplate 用于 - @Html.EditorFor(m => m.Fbacks)
(Fbacks.cshtml)
<tr>
<td>@Html.HiddenFor(m => m.Item)
@Html.DisplayFor(m => m.Item)
</td>
<td>@Html.CheckBoxFor(m => m.IsChecked)</td>
<td>@Html.TextBoxFor(m => m.Comment)</td>
</tr>
我需要的是:
当我选中复选框时,应该启用文本框,取消选中时,应该禁用文本框。