| Query | Solution | |
| How to Manage GridComboboxColumn Selected Index Change Event ? | You can make use of the SfDataGrid.CellComboBoxSelectionChanged, in which the event argument contains SelectedIndex property. Please refer to the following code example Code Example :
| |
| Enter key creating new row, which doesn't want. | We suspect that your requirement is to avoid creating a new row when enter key is pressed on the GridComboBoxColumn cell of the AddNewRow. This can be avoided by using the SfDataGrid.RowValidating event. Please refer to the following code example. Code Example :
| |
| Getting Error when I type value which doesn't exists in Combo box List Getting Error when I type value & press down key trying to select value which doesn't exists in Combo box List. Need typed text which doesn't exists in Combo box List. | SfDataGrid doesn’t have support to accept the typed value which doesn’t exist in the ComboBox list. It is the cause for the error. But we can provide a workaround to achieve this requirement by adding the newly typed value to the ComboBox list using the SfDataGrid.CurrentCellValidating event. Please refer to the following code example. Code Example:
|