我正在寻找如何在标题上添加一个复选框的方法,该标题支持选中或取消选中我的girdview的所有复选框列。
<table class="grid">
<th><input type="checkbox" name="chkall"/></th>
<th>Name</th>
<tr>
<td>
<input type="checkbox" id="chkItem_1"/>
</td>
<td>
Category 1
</td>
</tr>
<tr>
<td>
<input type="checkbox" id="chkItem_2"/>
</td>
<td>
Category 2
</td>
</tr>
</table>
答案 0 :(得分:9)
column.For(x => Html.CheckBox("mycheckbox", new { @class = "foo" }))
.DoNotEncode()
.Header("<th><input type=\"checkbox\" id="chkHeader" /></th>");
然后您可以使用jquery来处理标题复选框的更改事件并检查/取消选中所有其他事件:
$(function() {
$('#chkHeader').change(function() {
if ($(this).is(':checked')) {
$('.foo').attr('checked', 'checked');
} else {
$('.foo').removeAttr('checked');
}
});
});
答案 1 :(得分:5)
以下对我有用:
column.For(x => Html.CheckBox('chkBox', x.Published)).Named('Published');