我有一个WebDataGrid和一个UnboundCheckBoxField列。我希望能够从后面的代码中选中并取消选中标题中的复选框,从而选择或取消选中所有项目。 有WebDataGrid1.Columns [“ IsActive”]。Header,但没有可以设置的值。
答案 0 :(得分:1)
您的方法是正确的,只需将列强制转换为UnboundCheckBoxField
并使用HeaderChecked
属性。
代码段(C#):
protected void button1_Click(object sender, EventArgs e)
{
UnboundCheckBoxField checkboxField = (WebDataGrid1.Columns[0] as UnboundCheckBoxField);
checkboxField.HeaderChecked = !checkboxField.HeaderChecked;
}
代码段(aspx):
<ig:WebDataGrid ID="WebDataGrid1" runat="server" Height="350px" Width="400px" AutoGenerateColumns="False" DataSourceID="SqlDataSource1">
<Columns>
<ig:UnboundCheckBoxField Key="Check" HeaderChecked="true" Width="25px" />
...
</Columns>
<Behaviors>
<ig:EditingCore>
<Behaviors>
<ig:CellEditing>
</ig:CellEditing>
</Behaviors>
</ig:EditingCore>
</Behaviors>
Gif: