Tooltip

in namespace DotVVM.Framework.Controls.Bootstrap

Adds Bootstrap Tooltip to inner element or control.

Usage & Scenarios

Adds the Bootstrap Tooltip to an element or control.

https://getbootstrap.com/docs/3.3/javascript/#tooltips

Sample 1: Tooltip Usage

The Tooltip control has the Title property which holds the text used in the Tooltip.

The position of the tooltip can be set using the Position property.

<bs:Tooltip Position="Left" Title="This element has simple tooltip">
  <a href="#">Link 1</a>
</bs:Tooltip>

<bs:Tooltip Position="Right" Title="This element has simple tooltip">
  <a href="#">Link 2</a>
</bs:Tooltip>

<bs:Tooltip Position="Bottom" Title="This element has simple tooltip">
  <a href="#">Link 3</a>
</bs:Tooltip>

<bs:Tooltip Position="Top" Title="This element has simple tooltip">
  <a href="#">Link 4</a>
</bs:Tooltip>

Properties

Name Type Description Notes Default Value
property icon BackgroundColor BootstrapContextualBackgroundColor
attribute
inner element
static value
bindable
default
None
property icon Centered Boolean
attribute
inner element
static value
bindable
default
False
property icon ClearFix Boolean
attribute
inner element
static value
bindable
default
False
property icon Float BootstrapQuickFloat
attribute
inner element
static value
bindable
default
None
property icon ForceHidden Boolean
attribute
inner element
static value
bindable
default
False
property icon ForceShown Boolean
attribute
inner element
static value
bindable
default
False
property icon Position TooltipPosition Gets or sets the position of the tooltip.
attribute
inner element
static value
bindable
default
Left
property icon TextColor BootstrapContextualColor
attribute
inner element
static value
bindable
default
None
property icon Title String Gets or sets the text of the tooltip.
attribute
inner element
static value
bindable
default
property icon Visibility BootstrapVisibility
attribute
inner element
static value
bindable
default
None

HTML produced by the control