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

The component that configures the Grid toolbar settings.

Definition

Constructors

C#
public GridToolBarSettings()

Methods

C#
protected override Task OnInitializedAsync()
Returns:

Task

Overrides: ComponentBase.OnInitializedAsync()

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

Controls how toolbar handles too many buttons for available space. Use Scroll for horizontal scrolling through toolbar items, Section for a popup menu with overflow items, or None to disable overflow handling and allow natural HTML wrapping.

C#
[Parameter]
public GridToolBarOverflowMode OverflowMode { get; set; }

Sets the position of scroll navigation buttons when toolbar uses scroll mode. Use Start to place buttons before the toolbar items, End to place them after toolbar items, or Split to show buttons on both sides for easier navigation. Only applies when OverflowMode is set to Scroll.

C#
[Parameter]
public GridToolBarScrollButtonsPosition ScrollButtonsPosition { get; set; }

Controls when scroll navigation buttons appear in scrollable toolbar. Use Auto to show buttons only when toolbar content overflows and scrolling is needed, Visible to always display scroll buttons regardless of content size, or Hidden to never show scroll buttons. Only applies when OverflowMode is set to Scroll.

C#
[Parameter]
public GridToolBarScrollButtonsVisibility ScrollButtonsVisibility { get; set; }

Automatically switches toolbar buttons to icon-only mode on smaller screens (below 768px) to save space and improve mobile usability.

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

Shows disabled toolbar buttons (like Edit, Delete) even when they cannot be used, maintaining consistent layout and visual feedback.

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