I have a link button in a repeater control. the li element is drag and droppable using jquery. when the page loads the the link button works perfectly, the jquery that is attached and the server side code both execute. when I perform a drag and drop then click on the link button it doesn't not fire. when i click it a second time it does fire. If i perform 2 or drag and drops in a row the link button doesn't fire a as many drag and drops as i before it will fire. for example if if perform 3 drag and drops then it will take about 3 click before the events are fired.

<asp:Repeater ID="rTracks" runat="server" OnItemDataBound="rTracks_ItemDataBound" EnableViewState="true">
    <ItemTemplate>
        <li onclick="testclick();" class='admin-song ui-selectee <asp:Literal id="ltStatusClass" runat="server" />' mediaid="<%# Eval("MediaId") %>" artistid="<%# Eval("tbMedia.tbArtists.id") %>">
          <span class="handle"><strong><%--<%# int.Parse(DataBinder.Eval(Container, "ItemIndex", "")) + 1%>--%><%# Eval("SortNumber")%></strong><%--0:03--%></span> 
          <span class="play"><span class="btn-play">&nbsp;</span></span> 
          <span class="track" title="<%# Eval("tbMedia.Title") %>"><%# Eval("tbMedia.Title") %></span> 
          <span class="artist"><%# Eval("tbMedia.tbArtists.Name") %></span> 
          <span class="time" length="<%# Eval("tbMedia.Length") %>"><asp:Literal ID="ltRuntime" runat="server" /></span> 
          <span class="notes"><span class="btn-notes"><asp:Literal ID="ltNotesCount" runat="server" /></span></span> 
          <span class="status"><asp:Literal ID="ltStatus" runat="server" /></span> 
          <span class="date"><%# Eval("DateAdded") %></span> 
          <span class="remove">
            <asp:LinkButton ID="lbStatusClass2" runat="server" CssClass="btn-del" OnClick="UpdateStatus" ValidationGroup='<%#Bind("MediaId") %>'>
              <%--<span class='<asp:Literal id="ltStatusClass2" runat="server" Text="btn-del" />'>--%>&nbsp;<%--</span>--%>
            </asp:LinkButton>
          </span></span> 
          </li>
    </ItemTemplate>
</asp:Repeater>

I have onclick event on the li element, when the mouse is clicks the link button the li onclick event is fired even when linkbutton event doesnt fire. My question is if the li captures the event y doesnt the event fire on the linkbutton? What would be stopping the event?

UPDATE After doing more testing I realize that the first click doesnt work anywhere in the ul element. If i put a onclick on the ul it get recognized after the li click but the jquery and server side code dont get executed. Again this only happens after a jquery drag and drop.

<ul onclick="testulclick();" id="ulPlaylist" class="admin-left">
            <li class="head"><span class="handle">
                <asp:LinkButton ID="lbSortOrder" runat="server" OnClick="ReSortPlaylistByOrder" Visible="true"><%--<a id="aSortOrder" runat="server" visible="false" sort="handle">--%>Order <sup id="supSortOrder" runat="server" order="desc">&#9660;</sup><%--</a>--%></asp:LinkButton></span> <span class="play">&nbsp;</span> <span class="track">
                <asp:LinkButton ID="lbTitle" runat="server" class="track" OnClick="ReSortPlaylistByTitle"><%--<a sort="track">--%>Song Title <sup id="suptitleOrder" runat="server" order="desc">&#9660;</sup><%--</a>--%></asp:LinkButton></span> <span class="artist">
                    <asp:LinkButton ID="lbArtist" runat="server" OnClick="ReSortPlaylistByArtist"><%--<a sort="artist">--%>Artist <sup id="supArtistOrder" runat="server" order="desc">&#9660;</sup><%--</a>--%></asp:LinkButton></span> <span class="time">
                        <asp:LinkButton ID="lbTime" runat="server" OnClick="ReSortPlaylistByTime">Time<sup id="supTimeOrder" runat="server" order="desc">&#9660;</sup></asp:LinkButton></span> <span class="notes">
                        <asp:LinkButton ID="lbNotes" runat="server" OnClick="ReSortPlaylistByNotes"><%--<a sort="btn-notes">--%>Notes <sup id="supNotesOrder" runat="server" order="desc">&#9660;</sup><%--</a>--%></asp:LinkButton></span> <span class="status">
                            <asp:LinkButton ID="lbStatus" runat="server" OnClick="ReSortPlaylistByStatus"><%--<a sort="status">--%>Status <sup id="supStatusOrder" runat="server" order="desc">&#9660;</sup><%--</a>--%></asp:LinkButton></span> <span class="date">
                                <asp:LinkButton ID="lbDate" runat="server" OnClick="ReSortPlaylistByDate">Date<sup id="supDateOrder" runat="server" order="desc">&#9660;</sup></asp:LinkButton></span> <span class="remove">&nbsp;</span> </li>

            <asp:Repeater ID="rTracks" runat="server" OnItemDataBound="rTracks_ItemDataBound" EnableViewState="true">
                <ItemTemplate>
                    <li onclick="testliclick();" class='admin-song ui-selectee <asp:Literal id="ltStatusClass" runat="server" />' mediaid="<%# Eval("MediaId") %>" artistid="<%# Eval("tbMedia.tbArtists.id") %>"><span class="handle"><strong>
                        <%--<%# int.Parse(DataBinder.Eval(Container, "ItemIndex", "")) + 1%>--%><%# Eval("SortNumber")%></strong><%--0:03--%></span> <span class="play"><span class="btn-play">&nbsp;</span></span> <span class="track" title="<%# Eval("tbMedia.Title") %>">
                            <%# Eval("tbMedia.Title") %></span> <span class="artist">
                                <%# Eval("tbMedia.tbArtists.Name") %></span> <span class="time" length="<%# Eval("tbMedia.Length") %>">
                                    <asp:Literal ID="ltRuntime" runat="server" /></span> <span class="notes"><span class="btn-notes">
                                        <asp:Literal ID="ltNotesCount" runat="server" /></span></span> <span class="status">
                                            <asp:Literal ID="ltStatus" runat="server" /></span> <span class="date">
                                                <%# Eval("DateAdded") %></span> <span id="spanStatus" class="remove"><asp:LinkButton ID="lbStatusClass2" runat="server" CssClass="btn-del" OnClick="UpdateStatus" ValidationGroup='<%#Bind("MediaId") %>'>
                                                    <%--<span class='<asp:Literal id="ltStatusClass2" runat="server" Text="btn-del" />'>--%>
                                                    &nbsp;<%--</span>--%></asp:LinkButton></span></li>
                </ItemTemplate>
            </asp:Repeater>

        </ul>
link|improve this question

19% accept rate
1  
After re-reading this, I'm confused by the top/bottom of the question, they seem to conflict a bit...can you describe what does happen currently? – Nick Craver Dec 24 '10 at 20:50
Also, consider formatting your HTML like I have above...formatting it cleanly you can now see you have an unmatched </span> tag at the end...which may be causing your issues. – Nick Craver Dec 24 '10 at 20:54
Thanks for the unmatched span I will check on that. basically what is happening is after I do a drag and drop using the jquery, when i click on the link button nothing happens. when i click on it a second time the events fire normally. To track the lick event i added onclick to the parent <li>. So if i repeat the entire process and perform the drag and drop again then press the link button again. the li onclick event fires, but the linkbutton on click does not fire. when i click it a seond time it all works normally. – ChampionChris Dec 24 '10 at 21:07
This isn't an answer, merely a suggestion. the Javascript generated on the server side link button and the client side appear to be conflicting somewhat. What would happen if you simply rebuilt the HTML manually, and test both the outer (list element) javascript, and the inner (a href javascript) independantly? Do the events fire in that instance? Are you getting anything in firebug? errors etc? – Paul Dec 24 '10 at 23:34
NO im am not getting any firebug errors. If I add the code the onclientclick on the link button, that code executes – ChampionChris Dec 27 '10 at 14:20
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.