This is a migrated thread and some comments may be shown as answers.

Tootip on tabstrip

1 Answer 337 Views
ToolTip
This is a migrated thread and some comments may be shown as answers.
Frank
Top achievements
Rank 1
Frank asked on 18 Oct 2016, 06:23 PM

Hello,

I want to know if it´s posible to  make a Tooltip on a tabstrip on (MVC) .

 

best Regards F.K.

1 Answer, 1 is accepted

Sort by
0
Vessy
Telerik team
answered on 19 Oct 2016, 04:54 PM
Hi Frank,

Yes it is possible to add tooltip to a tabstrip in MVC in a way similar to the one shown in this demo:
http://demos.telerik.com/aspnet-mvc/tooltip/ajax

For example, you can have a similar configuration:
@(Html.Kendo().TabStrip()
      .Name("tabstrip")
      .Items(tabstrip =>
      {
 
      tabstrip.Add().Text("Tab 1")
          .Selected(true)
          .Content(@<text>
            <div>
                Content 1
            </div>
        </text>);
 
    tabstrip.Add().Text("Tab 2")
        .Content(@<text>
            <div>
                Content 2
            </div>
    </text>);
      })
)
 
@(Html.Kendo().Tooltip()
    .For("#tabstrip")
    .Filter("li")
    .Content("Content shown in tooltip")
    .Position(TooltipPosition.Bottom)
    .Width(200)
    .Height(50)
)


Regards,
Vessy
Telerik by Progress
Check out the new UI for ASP.NET Core, the most complete UI suite for ASP.NET Core development on the market, with 60+ tried-and-tested widgets, based on Kendo UI.
Tags
ToolTip
Asked by
Frank
Top achievements
Rank 1
Answers by
Vessy
Telerik team
Share this question
or