New Product Launch - BoldDesk !
Introducing help desk ticketing software.
New Product LaunchBoldDesk: Help desk ticketing software starts at $10 for 3 agents.
Try it for free.private void gridControl1_CurrentCellShowedDropDown(object sender, System.EventArgs e) { GridDropDownGridListControlCellRenderer cr = this.gridControl1.CurrentCell.Renderer as GridDropDownGridListControlCellRenderer; if(cr != null) { //cr.ListControlPart.CausesValidation = false; cr.ListControlPart.Focus(); } }The way to get this to work without this focus issue is handle WM_NOTIFY and reflected messages in teh grid''s WndProc. We have not done this yet.
>private void gridControl1_CurrentCellShowedDropDown(object sender, System.EventArgs e) >{ > GridDropDownGridListControlCellRenderer cr = this.gridControl1.CurrentCell.Renderer as GridDropDownGridListControlCellRenderer; > if(cr != null) > { > //cr.ListControlPart.CausesValidation = false; > cr.ListControlPart.Focus(); > } >} >> >The way to get this to work without this focus issue is handle WM_NOTIFY and reflected messages in teh grid''s WndProc. We have not done this yet. >