Defines a column for the MultiColumnComboBox component.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
C#
public class MultiColumnComboBoxColumn : ComponentBase, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Inheritance: objectComponentBaseMultiColumnComboBoxColumn
Implements:
Inherited Members
Constructors
C#
public MultiColumnComboBoxColumn()
Methods
C#
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Overrides:
C#
protected override void OnInitialized()
Overrides:
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; }