ClassGridToolBarSettings
The component that configures the Grid toolbar settings.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
public class GridToolBarSettings : ComponentBase, IComponent, IHandleEvent, IHandleAfterRender
Inheritance: objectComponentBaseGridToolBarSettings
Implements:
Inherited Members
Constructors
GridToolBarSettings()
Declaration
public GridToolBarSettings()
Properties
OverflowMode
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.
Declaration
[Parameter]
public GridToolBarOverflowMode OverflowMode { get; set; }
Property Value
ScrollButtonsPosition
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.
Declaration
[Parameter]
public GridToolBarScrollButtonsPosition ScrollButtonsPosition { get; set; }
Property Value
ScrollButtonsVisibility
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.
Declaration
[Parameter]
public GridToolBarScrollButtonsVisibility ScrollButtonsVisibility { get; set; }
Property Value
ShowIconOnlyTools
Automatically switches toolbar buttons to icon-only mode on smaller screens (below 768px) to save space and improve mobile usability.
Declaration
[Parameter]
public bool ShowIconOnlyTools { get; set; }
Property Value
ShowInactiveTools
Shows disabled toolbar buttons (like Edit, Delete) even when they cannot be used, maintaining consistent layout and visual feedback.
Declaration
[Parameter]
public bool ShowInactiveTools { get; set; }
Property Value
Methods
SetParametersAsync(ParameterView)
Declaration
public override Task SetParametersAsync(ParameterView parameters)
Parameters
parameters
Returns
Overrides