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

How to make tab work with other jquery plugin?

1 Answer 49 Views
TabStrip
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Gini
Top achievements
Rank 1
Gini asked on 16 Jul 2010, 02:48 PM
I have a page using tab and menu but working with other jquery plugin. In the Site.master I used:

<% Html.Telerik().ScriptRegistrar().Jquery(false); %>
</body>
</html>


However, menu works fine but not the tab. I then manually register telerik js files in the head of the Site.Master:

<head runat="server">  
<% Html.Telerik().ScriptRegistrar().DefaultGroup(group => group
       .Add("jquery-1.4.2.min.js")
       .Add("telerik.common.min.js")
       .Add("telerik.menu.min.js")
       .Add("telerik.tabstrip.min.js"));
%>
........

Yet, it's still not working. Can someone help?

1 Answer, 1 is accepted

Sort by
0
Gini
Top achievements
Rank 1
answered on 16 Jul 2010, 07:37 PM
I finally made it works. One of the reason is the jquery1-4-2 using by Telerik ScriptRegistrar has conflicts with jquery-1.3.2. I removed this 1.3.2 and everything is working fine now.

<% Html.Telerik().ScriptRegistrar()
          .jQuery(false)
          .Render(); %>




Tags
TabStrip
Asked by
Gini
Top achievements
Rank 1
Answers by
Gini
Top achievements
Rank 1
Share this question
or