Hello i have an application with a GridDataBoundGrid, with parent records their childs, in this case i have a comobobox cell type in one of the columns, but the problem is that this combo oly appears in the parents, not in the childs and i want the combobox in all levels.
Dim cboCellTipo As GridStyleInfo = Me.grdActividades.Binder.InternalColumns("IDTipo").StyleInfo
cboCellTipo.DataSource = listaTablaDetalleTipos
cboCellTipo.DisplayMember = "DescripcionCorta"
cboCellTipo.ValueMember = "IDTablaDetalle"
cboCellTipo.DropDownStyle = GridDropDownStyle.Exclusive
cboCellTipo.CellType = "ComboBox"
I define the combo cell like this, when I'm filling the grid form the datasource.
Anyone could help me please.
Thanks
greetings
Alejandro