|
SharpGrid does not provide a built-in way to display a separate drop-down per row. The way around this is to actually rebuild your drop-downs when the row changes. Depending on how complex your grid is going to get, you might be forced to use CustomDrawing methods. The only time that you will really need to use CustomDrawing methods is when you have a mixture of CheckBoxes and DropDowns, along with General cells. The reason for this is due to the fact that the Control.Type property is applied to the column, disallowing CheckBoxes to be mixed with DropDowns. Attached are two files: | File Name | Description | | sgProperties.zip | Shows a complex properties page with multiple drop downs and checkboxes. This sample includes custom drawing features that keep the checkboxes visible throughout the life of the grid. | | sgDynamicDropDowns.zip | Shows a very simple grid that displays a different combo box for each student on the row. |
|