Click here to Skip to main content
15,908,776 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi,

i used jquery follows:

aspx page:
XML
<head>

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> <!-- THIS IS FOR SLIDE SHOW-->
<script type="text/javascript" src="http://cdn.jsdelivr.net/jcarousel/0.2.8/jquery.jcarousel.min.js"></script>
<link href="http://cdn.jsdelivr.net/jcarousel/0.2.8/skins/tango/skin.css" rel="Stylesheet" />
<script type="text/javascript">
$(function () {
$('#mycarousel').jcarousel();
});
</script>

</head>

<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
<ul id="mycarousel" class="jcarousel-skin-tango">
<asp:Repeater ID="rptImages" runat="server">
<ItemTemplate>
<li>
<!-- <img alt="" style='height: 75px; width: 75px' src='<%# Eval("ImageUrl") %>' /></li>-->
<asp:ImageButton ID="chr" Height="75px" Width="75px" runat="server" ImageUrl='<%# Eval("ImageUrl") %>' /></li>
</ItemTemplate>
</asp:Repeater>
</ul>

</asp:Content>

and i have used wijmo gridview control.

everything works fine.

THE PROBLEM IS:

if i use jquey for slide show which i mentioned above, the wijmo gridview is not working or showing it' details. i remove the jquery slide show stuff, the wijmo gridview control works fine. so, how to solve that problem. i needed to use both should work. pls help out.
Posted
v2
Comments
Please check if you see any errors in Console tab of FireBug in FireFox?

1 solution

i got the solution for that. actually i put this script in master page:

<script type="text/javascript" src="Scripts/jquery.elevateZoom-3.0.3.min.js"></script>

but i used image zooming in another webform. so just i remove the above script from master page and paste it into required webform . now works fine.


thank you.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900