I've got an asp.net gridview. Within it I have 2 ImageButtons like so:
<ItemTemplate>
<asp:ImageButton class="DeleteLineItem" style="display:none;" ID="ibDelete" runat="server" CommandName="DeleteRow" ImageUrl="images/d.gif"
ToolTip="Delete Line Item?" />
<asp:ImageButton class="TempDeleteLineItem" OnClientClick="return false;" runat="server" ToolTip="Delete Line Item?" ImageUrl="images/d.gif" />
</ItemTemplate>
Notice the first one's visibility is set to false, the second one has a OnClientClick="return false;" as to avoid a post back...
My objective is to remove a row from the gridview with a fade effect, and then call the server side code behind the ibDelete (the first one whose visibility is set to false).
$(".TempDeleteLineItem").click(function() {
$(this).closest("tr").fadeOut(5000, function() {
alert('hi1');
$(this).remove();
alert('hi2');
$(this).closest(".DeleteLineItem").trigger('click');
alert('hi3');
});
});
All the alert's display and the fade effect works and I am not getting a script error..but the click event isn't firing. I must be using trigger() incorrectly?
Edit
I have also tried
$(".TempDeleteLineItem").click(function() {
$(this).closest("tr").fadeOut(5000, function() {
alert('hi1');
$(this).prev(".DeleteLineItem").bind('click');
$(this).remove();
alert('hi2');
});
});
And I've tried .trigger and I've tried .live and all seem to be the same issue.
I get the fade working and the remove working but the click event doesn't seem to fire...
