IComboBoxSettings.ColumnCellDisplayTemplate Property
Specifies a template used to display column cells in the combo box editor.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.1.dll
NuGet Package: DevExpress.Blazor
Declaration
[Parameter]
RenderFragment<ComboBoxColumnCellDisplayTemplateContext> ColumnCellDisplayTemplate { get; set; }
Property Value
Type | Description |
---|---|
RenderFragment<ComboBoxColumnCellDisplayTemplateContext> | The template for column cells. |
Remarks
The ColumnCellDisplayTemplate
allows you to specify custom content and change cell appearance in ComboBox columns. The template accepts a ComboBoxColumnCellDisplayTemplateContext object as the context
parameter. You can use the parameter’s members to obtain column cell information:
See Also