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

Renders an "Add Column" button in the TelerikTaskBoard<TItem, TColumn> toolbar. By default, clicking the button creates a new column data item, appends the column to the right, and opens inline title editing. If OnClick is provided, that custom callback runs instead and the built-in add behavior is skipped. Must be placed inside a TaskBoardToolBar block on the TaskBoard.

Definition

Constructors

C#
public TaskBoardToolBarAddColumnTool()

Methods

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

Overrides: ComponentBase.BuildRenderTree(RenderTreeBuilder)

Properties

The icon rendered inside the add column button. Accepts a , , or a custom icon object. Defaults to the built-in icon.

C#
[Parameter]
public object Icon { get; set; }

Fires when the user clicks the add column button. When set, overrides the built-in add-column behavior. Use this callback to open a custom dialog, create your own column item, or otherwise fully control the add flow.

C#
[Parameter]
public EventCallback OnClick { get; set; }