HA
haneefm
Syncfusion Team
May 10, 2007 11:16 PM UTC
Hi Ctim,
Try setting the ImeMode property of the GridTextBoxControl in a CurrentCellControlGotFocus event and let me know if this helps.
private void gridControl1_CurrentCellControlGotFocus(object sender, ControlEventArgs e)
{
if( e.Control is GridTextBoxControl )
{
GridControl grid = sender as GridControl;
GridCurrentCell cc = grid.CurrentCell;
GridTextBoxControl CellTextBox = e.Control as GridTextBoxControl;
if( cc.ColIndex == 1)
CellTextBox.ImeMode = ImeMode.Disable;
else
CellTextBox.ImeMode = ImeMode.NoControl;
}
}
Best regards,
Haneef