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

Definition

Constructors

C#
public GridToolBarSearchBoxTool()

Methods

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

Overrides: ComponentBase.BuildRenderTree(RenderTreeBuilder)

C#
protected override void OnParametersSet()

Overrides: ComponentBase.OnParametersSet()

Properties

Custom CSS class(es) for the SearchBox root element. Use to apply styling that is not available through other built-in parameters.

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

Delay in milliseconds between when user stops typing and when search filtering is applied. Use this to prevent excessive filtering during typing.

C#
[Parameter]
public int DebounceDelay { get; set; }

List of column field names to include in search operations. When empty, all string columns are searchable by default.

C#
[Parameter]
public IList<string> Fields { get; set; }

Controls the background styling of the search box. Use Solid, Outline, or Flat for different visual appearances. When null (the default), the search box uses the theme's default fill mode.

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

Text displayed inside the search box when it's empty. Use this to provide hints about search functionality to users.

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

Controls the corner radius of the search box. Use Small, Medium, Large, or Full for different border radius values. When null (the default), the search box uses the theme's default rounded value.

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

Controls the height and padding of the search box. Use Small, Medium, or Large for different sizes. When null (the default), the search box uses the theme's default size.

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

CSS width value for the search box. Use pixels, percentages, or other CSS units to control the search box width.

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