GridControl

In GridControl,I am adding rows using Rows.InsertRange but all the rows are readonly.I have not made them explicietly as readonly.

1 Reply

AD Administrator Syncfusion Team December 31, 2004 06:46 AM UTC

This is not the default behavior. If I drop a grid on a form and add this button handler to insert rows, the newly inserted rows are not readonly. private void button1_Click(object sender, EventArgs e) { this.gridControl1.Rows.InsertRange(9, 5); } Are you setting CellType="Static" somewhere? Can you tell us how to see this behavior in one of our samples?

Loader.
Up arrow icon