protected override void OnKeyUp(DataColumnBase dataColumn, RowColumnIndex rowColumnIndex, KeyEventArgs e)
 {
     if (e.KeyData == Keys.Tab)
     {
         dataGrid.CurrentCell.BeginEdit();
         //To open the dropdown
         SfCombo.ShowDropDown();
     }
 }