AD
Administrator
Syncfusion Team
March 28, 2006 07:36 AM UTC
Hi Chandru,
This issue has been resolved in our latest version ( 4.1 ). Here is the bug link that is similar to this issue in version 3.2.1.0 ( http://www.syncfusion.com/support/issues/grid/Default.aspx?ToDo=view&questId=283 ). Please try this work around or the one specified in the bug link and see if it helps to resolve the issue.
//this.gridDataBoundGrid1.CurrentCellControlKeyMessage += new GridCurrentCellControlKeyMessageEventHandler(gridDataBoundGrid1_CurrentCellControlKeyMessage);
private void gridDataBoundGrid1_CurrentCellControlKeyMessage(object sender, GridCurrentCellControlKeyMessageEventArgs e)
{
GridDataBoundGrid grid = (GridDataBoundGrid) sender;
GridCurrentCell cc = this.gridDataBoundGrid1.CurrentCell;
Keys keyCode = (Keys)((int)e.Msg.WParam) & Keys.KeyCode;
if(keyCode == Keys.Tab)
{
grid.CurrentCell.MoveRight();
e.Handled = true;
e.Result = true;
}
}
Let us know if you need any further assistance.
Best regards,
Madhan.