REGD---Undo in GRIDTEXTBOXCELLRENDERER

Hi There, My requirement is, I need to update a textbox when ever a cahnge happens in a particular cell and that cell is GridTextboxCell. No events are provided for this class,can you help me in achieving this. Cheers, Manohar B.

1 Reply

AD Administrator Syncfusion Team September 13, 2005 04:02 PM UTC

Hi Manohar, You could try the CurrentCellChanged / CurrentCellValidateString events. Or you could try this: GridTextBoxCellRenderer cr = this.gridControl1.CellRenderers["TextBox"] as GridTextBoxCellRenderer; cr.TextBox.TextChanged +=new EventHandler(TextBox_TextChanged); private void TextBox_TextChanged(object sender, EventArgs e) { } Best regards, Jay N

Loader.
Up arrow icon