New to Telerik UI for ASP.NET MVC? Download free 30-day trial

SliderTooltipBuilder

Defines the fluent API for configuring the Kendo Slider for ASP.NET MVC tooltip

Methods

Format(System.String)

Gets or sets the format for displaying the value in the tooltip.

Parameters

value - System.String

The value.

Example


             @( Html.Kendo().Slider()
                        .Name("Slider")
                        .Tooltip(tooltip => tooltip.Format("{0:P}"))
            )

Enabled(System.Boolean)

Display tooltip while drag.

Parameters

value - System.Boolean

The value.

Example


             @( Html.Kendo().Slider()
                        .Name("Slider")
                        .Tooltip(tooltip => tooltip.Enable(false))
            )

Template(System.String)

Gets or sets the template for displaying the value in the tooltip.

Parameters

template - System.String

The template.

Example


             @( Html.Kendo().Slider()
                        .Name("Slider")
                        .Tooltip(tooltip => tooltip.template("${value}"))
            )

In this article
Not finding the help you need?