IComboBoxSettings.ColumnCellDisplayTemplate Property
In This Article
Specifies a template used to display column cells in the combo box editor.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.2.dll
NuGet Package: DevExpress.Blazor
#Declaration
C#
[Parameter]
RenderFragment<ComboBoxColumnCellDisplayTemplateContext> ColumnCellDisplayTemplate { get; set; }
#Property Value
Type | Description |
---|---|
Render |
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