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

Definition

Constructors

C#
protected ColumnBase()

Methods

C#
public void Dispose()

Implements: IDisposable.Dispose()

C#
protected override void OnAfterRender(bool firstRender)
Parameters:firstRenderbool

Overrides: ComponentBase.OnAfterRender(bool)

C#
protected override void OnInitialized()

Overrides: ComponentBase.OnInitialized()

C#
protected override Task OnParametersSetAsync()
Returns:

Task

Overrides: ComponentBase.OnParametersSetAsync()

C#
public override Task SetParametersAsync(ParameterView parameters)
Parameters:parametersParameterViewReturns:

Task

Overrides: ComponentBase.SetParametersAsync(ParameterView)

Properties

C#
public List<IColumn> ColumnsCollection { get; set; }

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

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

Implements: IColumn.HeaderClass

The template for the header cell of this column. When the template is used, the Title text is not rendered by default. You can render custom components and apply logic in it.

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

Specifies the unique identifier of the column. Use it for programmatic column auto-fitting (resizing) and splitting columns to groups in the Column Menu.

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

Implements: IColumn.Id

Specifies whether the column is locked.

C#
[Parameter]
public bool Locked { get; set; }

Implements: IColumn.Locked

The maximum resizable width of the column in pixels.

C#
[Parameter]
public decimal MaxResizableWidth { get; set; }

Implements: IColumn.MaxResizableWidth

The minimum resizable width of the column in pixels.

C#
[Parameter]
public decimal MinResizableWidth { get; set; }

Implements: IColumn.MinResizableWidth

C#
[CascadingParameter]
public IColumn ParentColumn { get; set; }

Specifies whether the column can be reordered.

C#
[Parameter]
public bool Reorderable { get; set; }

Implements: IColumn.Reorderable

Specifies whether the column can be resized.

C#
[Parameter]
public bool Resizable { get; set; }

Implements: IColumn.Resizable

The string title rendered in the column header. If not set, the column will render the DisplayAttribute.Name property, or the Field name itself.

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

Implements: IColumn.Title

Specifies whether the column is visible. If set to false, the column will be hidden from the grid. null is treated as true.

C#
[Parameter]
public bool? Visible { get; set; }

Implements: IColumn.Visible

The width of the column in any valid CSS unit (px, %, em). Some features require pixel column widths.

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

Implements: IColumn.Width