views:

27

answers:

1

how to allow combobox placed inside datagrid to type text.

it just binding the values already stored in the database. but i need to type the value in the combobox which is not shown in the binded values...

how to make the combobox as editable column??? any help...

+1  A: 

You can set ComboBoxStyle to DropDown

Specifies that the list is displayed by clicking the down arrow and that the text portion is editable. This means that the user can enter a new value and is not limited to selecting an existing value in the list.

KMan