Hi,
I have a little problem. When I add columns into the GridView, I can't seem to be able to edit the rows after. The ReadOnly is at false and the AllowEditRow is at true. I don't understand why I can't edit the GridView rows.
Thank's
GridViewDataColumn col1 = new GridViewDataColumn("ID","ID");
GridViewDataColumn col2 = new GridViewDataColumn("name","name");
col1.DataType = typeof(int);
col2.DataType = typeof(string);
radGridView1.Columns.Add(col1);
radGridView1.Columns.Add(col2);
object[] row = new object [] {1, "John"}
I have a little problem. When I add columns into the GridView, I can't seem to be able to edit the rows after. The ReadOnly is at false and the AllowEditRow is at true. I don't understand why I can't edit the GridView rows.
Thank's
GridViewDataColumn col1 = new GridViewDataColumn("ID","ID");
GridViewDataColumn col2 = new GridViewDataColumn("name","name");
col1.DataType = typeof(int);
col2.DataType = typeof(string);
radGridView1.Columns.Add(col1);
radGridView1.Columns.Add(col2);
object[] row = new object [] {1, "John"}
radGridView1.Rows.Add(row);
radGridView1.ReadOnly = false;
radGridView1.MasterGridViewTemplate.AllowEditRow = true;