[]
Gets or sets the delegate method which creates the detail control for displaying.
[Browsable(false)]
public RowDetailProvider RowDetailProvider { get; set; }
The delegate should always return the new instance of detail control as multiple detail controls can be shown in the C1FlexGrid at once.
The detail control should support IC1FlexGridRowDetail interface
The default value for this property is null.
The code below assignes delegate which creates C1InputPanel row detail control:
// assign delegate which creates row detail
flexGrid.RowDetailProvider = (g, r) => new C1InputPanelRowDetail();