Home › Forums › WinForms controls › Xceed Grid for WinForms › Inherited CellRow / Cell: doesn’t always allow editing. › Reply To: Inherited CellRow / Cell: doesn’t always allow editing.
Yes, I did. But I can’t remember how I did it. After looking at the code, I think it might be solved by explicitly setting the CellEditor-property of the inherited Cells to an editor, like this:<code>public class InheritedRow : CellRow
{
…
GridTextBox editor = new GridTextBox();
protected override Cell CreateCell(Column parentColumn) {
InheritedCell cell = new InheritedCell(parentColumn);
cell.CellEditor = editor;
return cell;
}
…
}</code>
Imported from legacy forums. Posted by Tommy (had 3685 views)