Reputation: 53
I have a listview with some info on gigs. When you hover an item, a JavaScript function (from hoveralls) is called to show the details in a separate div on the page. Problem is that it only works on the first item of the listview. I tried putting the function in de window.load and in the document.ready but no luck.
Why is this function not working on all the items in the list?
<asp:ListView ID="lvAgenda" runat="server" GroupItemCount="4">
<EmptyDataTemplate>
<table style="">
<tr>
<td>
<p class="p2">
<asp:Label ID="lblNoGigs" runat="server" Text="Sorry, maar er zijn geen optredens gepland :-(."></asp:Label>
</p>
</td>
</tr>
</table>
</EmptyDataTemplate>
<ItemTemplate>
<td>
<div id="divGigItem" class="gigitem img-bottom-shadow">
<div id="gigItemTest">
<div class="hiddengigitem">
<asp:Label ID="lblGigId" runat="server" Visible="false" Text='<%# Eval("GigID") %>' CssClass="gigitemyear"></asp:Label></div>
<div class="gigitemyear">
<asp:Label ID="lblGigMonth" runat="server" Text='<%# Eval("GigDate.Year") %>' CssClass="gigitemyear"></asp:Label></div>
<asp:Label ID="lblGigDay" runat="server" Text='<%# Eval("GigDate", "{0:dd/M}") %>' CssClass="gigitemdate"></asp:Label>
<div class="gigitemplace">
<p class="hoveralls_text">
<asp:Label ID="lblGigPlace" runat="server" Text='<%# Eval("GigCity") %>' CssClass="gigitemplace"></asp:Label></p>
</div>
</div>
</div>
</td>
</ItemTemplate>
<LayoutTemplate>
<table id="lvTable" runat="server" border="0" style="">
<tr id="groupPlaceholder" runat="server">
</tr>
</table>
<div class="wrapper aligncenter margin-top">
<asp:DataPager ID="dpFutureGigs" PagedControlID="lvAgenda" PageSize="12" runat="server">
<Fields>
<asp:NextPreviousPagerField ButtonType="Image" ShowPreviousPageButton="true" ShowLastPageButton="True"
ShowFirstPageButton="True" ButtonCssClass="img-max-width50" FirstPageImageUrl="images/Icons/firstpage.png"
LastPageImageUrl="images/Icons/lastPage.png" NextPageImageUrl="images/Icons/nextPage.png" PreviousPageImageUrl="images/Icons/previousPage.png" />
<asp:NumericPagerField ButtonCount="2" />
</Fields>
</asp:DataPager>
</div>
</LayoutTemplate>
<GroupTemplate>
<tr id="tableRow" runat="server">
<td id="itemPlaceholder" runat="server">
</td>
</tr>
</GroupTemplate>
</asp:ListView>
And here's the javascript, that works fine on the firts element...
<script type="text/javascript">
$(document).ready(function () {
$('#divGigItem').HoverAlls({
speed_in: 500,
bg_width: '380px',
bg_height: '340px',
starts: '-380px,340px',
ends: '0px,0px',
returns: '-380px,340px',
target_container: "#gigDetailsTarget",
html_mode: "#gigDetails",
container_class: 'leftslidein',
bg_class: 'gigdetailbg'
});
});
</script>
Upvotes: 0
Views: 740
Reputation: 129792
You're trying to access several elements by a single ID, but an ID has to be unique within the document. Access the elements by a class that uniquely identifies the elements of interest instead, or by some other CSS selector.
Reusing ID's the way you'll end up doing if you have hard-coded ID's in item templates will cause invalid HTML and $('#X')
will only ever return one element, regardless of how many elements of id="X"
there may be in the document.
Upvotes: 1