HA
haneefm
Syncfusion Team
December 3, 2007 05:10 PM UTC
Hi Prabhjeet,
You turn off selecting the next index when user double clicks inside the cell by setting the AllowDoubleClickChangeSelectedIndex property to false. Here is a code snippet
//Access the cellModel
GridComboBoxCellModel cm = this.grid.TableModel.CellModels["ComboBox"] as GridComboBoxCellModel;
//Lets you enable or turn off selecting the next index when user double clicks inside cell.
cm.AllowDoubleClickChangeSelectedIndex = false;
Best regards,
Haneef