Skip to main content
All docs
V25.1
  • IComboBoxSettings.ColumnCellDisplayTemplate Property

    Specifies a template used to display column cells in the combo box editor.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.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 property allows you to customize the appearance of every cell in the ComboBox control. The template accepts a ComboBoxColumnCellDisplayTemplateContext object as the context parameter. You can use the parameter’s members to:

    • Fetch the associated data item.
    • Get information about a cell.
    • Access the current column object.

    Note

    The ColumnCellDisplayTemplate property can be used alongside the CellDisplayTemplate property. If both templates are defined, the column-specific CellDisplayTemplate overrides the global ColumnCellDisplayTemplate for cells within that particular column.

    See Also