Class
TelerikTooltip

The class for the Tooltip component.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public class TelerikTooltip : BaseComponent, IComponent, IHandleEvent, IHandleAfterRender, IDisposable

Inheritance: objectComponentBaseBaseComponentTelerikTooltip

Implements: IComponentIDisposableIHandleAfterRenderIHandleEvent

Inherited Members BaseComponent.ShouldRender()BaseComponent.InitLocalizer()BaseComponent.ThrowIfParameterIsNull(object, string)BaseComponent.HaveOptionsChanged(IDictionary<string, object>, IDictionary<string, object>)BaseComponent.GetClassString(params string[])BaseComponent.InvokeAsync<T>(string, params object[])BaseComponent.InvokeAsync<T>(string, CancellationToken, params object[])BaseComponent.InvokeVoidAsync(string, params object[])BaseComponent.InvokeComponentMethodAsync<T>(string, params object[])BaseComponent.InvokeComponentMethodAsync<T>(string, CancellationToken, params object[])BaseComponent.InvokeVoidComponentMethodAsync(string, params object[])BaseComponent.InvokeComponentVoidMethodAsync(string, object)BaseComponent.InvokeDisposeAsync()BaseComponent.StateHasChanged()BaseComponent.RootComponentBaseComponent.ClassComponentBase.OnInitialized()ComponentBase.OnParametersSet()ComponentBase.OnAfterRender(bool)ComponentBase.InvokeAsync(Action)ComponentBase.InvokeAsync(Func<Task>)

Constructors

TelerikTooltip()

Declaration

cs-api-definition
public TelerikTooltip()

Properties

Height

Defines the height of the Component as a CSS value.

Declaration

cs-api-definition
[Parameter]
public string Height { get; set; }

Property Value

string

HideDelay

The delay before the closing of the Tooltip in milliseconds.

Declaration

cs-api-definition
[Parameter]
public int HideDelay { get; set; }

Property Value

int

Id

Specifies id attribute of the Tooltip element. Can be useful so you can point an aria-described-by attribute of your target to the tooltip ID for the benefit of screen readers.

Declaration

cs-api-definition
[Parameter]
public string Id { get; set; }

Property Value

string

Position

Defines the placement of the Tooltip in relation to its target. Supports Top, Bottom, Left and Right position.

Declaration

cs-api-definition
[Parameter]
public TooltipPosition Position { get; set; }

Property Value

TooltipPosition

ShowDelay

The delay before the opening of the Tooltip in milliseconds.

Declaration

cs-api-definition
[Parameter]
public int ShowDelay { get; set; }

Property Value

int

ShowOn

Defines the event which will trigger the Tooltip to show. The possible events are Click and Hover. The default value is Hover.

Declaration

cs-api-definition
[Parameter]
public TooltipShowEvent ShowOn { get; set; }

Property Value

TooltipShowEvent

TargetSelector

Specifies the selector for the target elements of the tooltip. Uses CSS-type selectors.

Declaration

cs-api-definition
[Parameter]
public string TargetSelector { get; set; }

Property Value

string

Template

Specifies the template for the content of the tooltip. The @context of the template contains all data attribute of the target element, lowercase, and the title attribute of the target.

Declaration

cs-api-definition
[Parameter]
public RenderFragment<TooltipTemplateContext> Template { get; set; }

Property Value

RenderFragment<TooltipTemplateContext>

Width

Defines the width of the Component as a CSS value. The default value is "auto".

Declaration

cs-api-definition
[Parameter]
public string Width { get; set; }

Property Value

string

Methods

BuildRenderTree(RenderTreeBuilder)

Declaration

cs-api-definition
protected override void BuildRenderTree(RenderTreeBuilder __builder)

Parameters

__builder

RenderTreeBuilder

Overrides ComponentBase.BuildRenderTree(RenderTreeBuilder)

Dispose()

Declaration

cs-api-definition
public override void Dispose()

Overrides BaseComponent.Dispose()

OnAfterRenderAsync(bool)

Declaration

cs-api-definition
protected override Task OnAfterRenderAsync(bool firstRender)

Parameters

firstRender

bool

Returns

Task

Overrides BaseComponent.OnAfterRenderAsync(bool)

OnInitializedAsync()

Declaration

cs-api-definition
protected override Task OnInitializedAsync()

Returns

Task

Overrides BaseComponent.OnInitializedAsync()

OnParametersSetAsync()

Declaration

cs-api-definition
protected override Task OnParametersSetAsync()

Returns

Task

Overrides ComponentBase.OnParametersSetAsync()

SetParametersAsync(ParameterView)

Declaration

cs-api-definition
public override Task SetParametersAsync(ParameterView parameters)

Parameters

parameters

ParameterView

Returns

Task

Overrides ComponentBase.SetParametersAsync(ParameterView)