New to Telerik UI for BlazorStart a free 30-day trial

Defines a column for the MultiColumnComboBox component.

Definition

Constructors

C#
public MultiColumnComboBoxColumn()

Methods

C#
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters:__builderRenderTreeBuilder

Overrides: ComponentBase.BuildRenderTree(RenderTreeBuilder)

C#
protected override void OnInitialized()

Overrides: ComponentBase.OnInitialized()

Properties

The CSS class that will be rendered on the column's content cells.

C#
[Parameter]
public string Class { get; set; }

Specifies the name of the field whose data the column will display. You can use the nameof operator.

C#
[Parameter]
public string Field { get; set; }

The CSS class that will be rendered on the column's header cell.

C#
[Parameter]
public string HeaderClass { get; set; }

Defines the header template of the column.

C#
[Parameter]
public RenderFragment HeaderTemplate { get; set; }

Defines the cell template of the column.

C#
[Parameter]
public RenderFragment<object> Template { get; set; }

The string title rendered in the column header. If not declared, the Field value will be used instead.

C#
[Parameter]
public string Title { get; set; }

Represents the width of the column in pixels.

C#
[Parameter]
public string Width { get; set; }