Class MultiColumnComboBoxColumn
Defines a column for the MultiColumnComboBox component.
Inheritance
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class MultiColumnComboBoxColumn : ComponentBase, IMultiColumnComboBoxColumn, IDisposable
Constructors
MultiColumnComboBoxColumn()
Declaration
public MultiColumnComboBoxColumn()
Properties
Class
The CSS class that will be rendered on the column's content cells.
Declaration
public string Class { get; set; }
Property Value
System.String
|
Field
Specifies the name of the field whose data the column will display. You can use the nameof operator.
Declaration
public string Field { get; set; }
Property Value
System.String
|
HeaderClass
The CSS class that will be rendered on the column's header cell.
Declaration
public string HeaderClass { get; set; }
Property Value
System.String
|
HeaderTemplate
Defines the header template of the column.
Declaration
public RenderFragment HeaderTemplate { get; set; }
Property Value
Microsoft.AspNetCore.Components.RenderFragment
|
Template
Defines the cell template of the column.
Declaration
public RenderFragment<object> Template { get; set; }
Property Value
Microsoft.AspNetCore.Components.RenderFragment<System.Object>
|
Title
The string title rendered in the column header. If not declared, the Field value will be used instead.
Declaration
public string Title { get; set; }
Property Value
System.String
|
Width
Represents the width of the column in pixels.
Declaration
public string Width { get; set; }
Property Value
System.String
|
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder
__builder
|
OnInitialized()
Declaration
protected override void OnInitialized()