我使用此代码向 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();