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

Anchor tag in Tabstrip on Ipad

3 Answers 124 Views
TabStrip
This is a migrated thread and some comments may be shown as answers.
Angela
Top achievements
Rank 1
Angela asked on 08 Dec 2012, 12:08 AM
I created a site that has 3 tabs.  In one of the tabs there are some very simple anchor tags.  E.g. <a href="www.telerik.com">Telerik Link</a> 

The issue is that some people in the company are complaining that the links dont work on their IPads.  

Any suggestions?

3 Answers, 1 is accepted

Sort by
0
Petur Subev
Telerik team
answered on 11 Dec 2012, 03:57 PM
Hello Angela,

Could you share the code so we can have a better picture of the issue you experience?

Regards,
Petur Subev
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0
Angela
Top achievements
Rank 1
answered on 11 Dec 2012, 04:12 PM
Just as a FYI, I ended up creating a ticket on this yesterday morning... Once I get info from there I will also post it in here.  Not sure if you want to delete this thread because of that.  Just thought I would share the info if there is a way to resolve this.

Sure, The easiest way to reproduce it is to create an new Kendo UI MVC 3 project. Then change 3 files, the Index page is as followed

@using Kendo.Mvc.UI
@{
    ViewBag.Title = "Home Page";
}

<h2>@ViewBag.Message</h2>
<p>
    To learn more about ASP.NET MVC visit <a href="http://asp.net/mvc" title="ASP.NET MVC Website">http://asp.net/mvc</a>.
</p>

<p>
    To learn more about working with the Kendo UI Complete for ASP.NET MVC, you can visit the folowing resources:
</p>
<ul>
        <li><a href="http://demos.kendoui.com/">online demos</a></li>
        <li><a href="http://docs.kendoui.com/getting-started/using-kendo-with/aspnet-mvc/introduction">online documentation</a></li>
        <li><a href="http://www.kendoui.com/forums.aspx">community forums</a></li>
        <li><a href="http://tv.telerik.com/search?FilterByTags=KendoUI">videos on Telerik TV</a></li>
</ul>
 @(Html.Kendo().TabStrip()
              .Name("tabstrip")
              .Items(tabstrip => tabstrip.Add().Text("test")
                                     .Selected(true)
                                     .LoadContentFrom("Test", "home"))
        )


The Test.cshtml is as followed....

<a href="http://www.kendoui.com">some random text here for link</a>

Inside the home controler i have the following.

        public ActionResult Test()
        {
            return PartialView();
        }

0
Angela
Top achievements
Rank 1
answered on 11 Dec 2012, 05:45 PM
Sorry I didnt realize you shouldnt post on here then submit a ticket.  Wont happen again.

Anyways as an update.

The fix was to download a newer internal build which solved the issue.

Thanks Dimo and Petur sorry about making both of you look into this.
Tags
TabStrip
Asked by
Angela
Top achievements
Rank 1
Answers by
Petur Subev
Telerik team
Angela
Top achievements
Rank 1
Share this question
or