DataGrid Control
-
I need to have a column that should display a combobox. However the contents of the combobox are not always the same, they depend on the value of another cell. So I want is that when the cellEnter event of the column in question fires, the combobox appears on the current cell and its contents depend on the cell to the left. When the cellLeave event of the same column fires, the combobox disappears and the cell now is just a text cell with the contents of the selected item from the combobox. When the cellEnter event in the Column in question fires and the cell is not empty, the combobox should appear and the text selected from the items list Thanking You somasundaram G
-
I need to have a column that should display a combobox. However the contents of the combobox are not always the same, they depend on the value of another cell. So I want is that when the cellEnter event of the column in question fires, the combobox appears on the current cell and its contents depend on the cell to the left. When the cellLeave event of the same column fires, the combobox disappears and the cell now is just a text cell with the contents of the selected item from the combobox. When the cellEnter event in the Column in question fires and the cell is not empty, the combobox should appear and the text selected from the items list Thanking You somasundaram G
There are lots of great samples of how to manipulate the DataGrid here: http://www.syncfusion.com/FAQ/winforms/default.aspx#44[^] But look real closely at example 5.9. In there it talks about creating the combobox and filling it with data. Do you want the data in the combobox to be bound or unbound? Dean