我使用此代码向radgrid添加一个复选框列。在我的程序中,我想动态添加行。但是当我使用我的代码并运行程序时,对用户禁用复选框,他/她无法更改它。我应该怎么做才能允许用户更改复选框?
我的代码:
<telerik:GridCheckBoxColumn DataField="Discontinued" HeaderText="Discontinued"
DataType="System.Boolean" ShowFilterIcon="False">
</telerik:GridCheckBoxColumn>
并动态添加行:
DataTable table = new DataTable();
table.Columns.Add("DeliveryID");
table.Columns.Add("DeliveryName");
DataRow dr = table.NewRow();
dr["DeliveryName"] = "uk";
table.Rows.Add(dr);
DataRow dr2 = table.NewRow();
dr2["DeliveryName"] = "US";
table.Rows.Add(dr2);
RadGrid1.DataSource = table;
RadGrid1.Rebind();
答案 0 :(得分:1)
只有在网格处于编辑模式时才能选中/取消选中GridCheckBoxColumn
。已有大量信息可以回答您的问题。试试这些: