Home › Forums › WinForms controls › Xceed Grid for WinForms › Master/Detail CellEditorManager Handler › Reply To: Master/Detail CellEditorManager Handler
Andre,
Here is how I setup the master/detail and then add the events.
BeginInit
GridControlTaxes.DataSource = dsDataSetTaxes
GridControlTaxes.DataMember = “DTCLTaxAgencies”
Dim detail As New Xceed.Grid.DetailGrid
detail.HeaderRows.Add(New Xceed.Grid.ColumnManagerRow)
detail.DataSource = dsDataSetTaxes
detail.DataMember = “DTCLTaxAgencies.TaxRelation”
GridControlTaxes.DetailGridTemplates.Add(detail)
AddHandler Code
EndInit
Thanks,
Dan
Imported from legacy forums. Posted by Daniel (had 392 views)