AD
Administrator
Syncfusion Team
June 14, 2005 08:05 AM UTC
There may be a grid event like CurrentCellKeyDown that you could use.
If you want to get at the TextBox associated with the "TextBox" CellType, then you can use code like:
GridTextBoxCellRenderer cr = this.grid.CellRenderers["TextBox"] as GridTextBoxCellRenderer;
GridTextBoxControl tb = cr.TextBox as GridTextBoxControl;
QL
QingGuang Lu
June 14, 2005 10:22 AM UTC
Hi, Thanks for your answer, It''s Right.
LuQingGuang
>There may be a grid event like CurrentCellKeyDown that you could use.
>
>If you want to get at the TextBox associated with the "TextBox" CellType, then you can use code like:
>
>
>GridTextBoxCellRenderer cr = this.grid.CellRenderers["TextBox"] as GridTextBoxCellRenderer;
>GridTextBoxControl tb = cr.TextBox as GridTextBoxControl;
>