I have this label that i want to fadeOut after button event clicked. I am using a MasterPage. And the Script Manager is declared on MasterPage. In Defaulst.aspx i have:

<%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true"
    CodeFile="Default.aspx.cs" Inherits="_Default" %>

<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="ajax" %>
<asp:Content ID="Content1" ContentPlaceHolderID="MainContentPlaceHolder" runat="Server">
    <script type="text/javascript" src="scripts/jquery-1.4.1.min.js">
        $(function () {
            $("input[id$='btnShowDate']").click(function () {
                $("span[id$='lblStatus']").fadeOut("slow");
            });
        });
    </script>
    <asp:UpdatePanel runat="server" ID="uP">
        <Triggers>
            <asp:AsyncPostBackTrigger ControlID="btnShowDate" />
        </Triggers>
        <ContentTemplate>
            <asp:Label runat="server" ID="lblStatus" />
            <div>
                <asp:Button runat="server" ID="btnShowDate" Text="Show Today`s Date" OnClick="btnShowDate_Click" /></div>
        </ContentTemplate>
    </asp:UpdatePanel>
</asp:Content>

And on the CodeBehind i have:

protected void btnShowDate_Click(object sender, EventArgs e)
{
System.Threading.Thread.Sleep(3000);
lblStatus.Text = DateTime.Now.Date;
}

The problem is that the label is not fading Out after the button clicked. Does someone has any idea on how to handle this problem? Thank you.

link|improve this question
feedback

3 Answers

up vote 3 down vote accepted

The ID isn't what you think it is in the rendered page, ASP.Net mangles it a bit, like this:

<span id="container_container2_lblStatus">Stuff</span>

So you need an attribute-ends-with selector, like this:

$(document).ready(function() {
  $("span[id$='lblStatus']").fadeOut("slow");
});

The to make it happen on click, add it as a .click() handler, like this:

$(function() {
  $("input[id$='btnShowDate']").live('click', function() {
    $("span[id$='lblStatus']").fadeOut("slow");
  });
});

A cleaner alternative is to add a class to each control, for example:

<asp:Label runat="server" id="lblStatus" CssClass="status" />
//and...
<asp:Button runat="server" id="btnShowDate" CssClass="showDate" ... />

The use those classes as your selector, for example:

$(function() {
  $(".showDate").live('click', function() {
    $(".status").fadeOut("slow");
  });
});

Since the button's getting replace in an update panel, you want .live() here, so it works after postback as well.

link|improve this answer
I like to use CSS classes on my ASP.NET controls to select them in jQuery, but Nick's solution works just as well. – dave thieben Sep 28 '10 at 16:56
@dave - As do I, was already adding the option when you commented...trying to demonstrate the actual ID problem as well in this case though, since the OP seems unaware of it. – Nick Craver Sep 28 '10 at 16:59
even better. ;) – dave thieben Sep 28 '10 at 17:01
Thanks for the answer but still it doesn`t works. The label appears after the button clicked and does not fade out. – sacrament Sep 28 '10 at 17:11
@sacrament - Which of the above solutions are you using? Can you update with your current code? – Nick Craver Sep 28 '10 at 17:12
show 25 more comments
feedback

Ok i figured out how to handle jQuery in update panel. here is the code:

<script type="text/javascript" src="scripts/jquery-1.4.1.min.js">
    </script>
    <script type="text/javascript">
        var prm = Sys.WebForms.PageRequestManager.getInstance();
        prm.add_endRequest(function () {
            $(document).ready(function () {
                $("span[id$='lblStatus']").delay(3000).fadeOut(4000, function () {
                    $(this).innerHTML("");
                });
            });
        });

</script>

Maybe others who have issues could use it and handle it. Thank you

link|improve this answer
feedback

I was trying this code sample offered by Nick Craver above...

$(function() {
  $(".showDate").live('click', function() {
    $(".status").fadeOut("slow");
  });
});

... but found that it only worked properly if my Label control is located outside of the UpdatePanel. When it's inside the UpdatePanel, the fadeOut animation completes in a split second no matter what length of time I specify as a parameter.

My second concern is that I don't necessarily want to invoke this action on every button click. In the code-behind of my button click I'm performing an update to the database and only upon success of that operation do I want to display my fadeOut message. Here's how I've done this successfully where I'm not using the UpdatePanel:

/* My CSS class */
.successMessage
{
   display: none;
   color: Green;
   font-weight: bold;
}

/* My client-side javascript */
<script type="text/javascript" language="javascript">
    function flashSuccessMessage() {
        $(".successMessage").show();
        $(".successMessage").fadeOut(5000);
    }
</script>

// My code-behind
protected void btnSubmit_Click(object sender, EventArgs e)
{
    ClientScript.RegisterStartupScript(Page.GetType(), "successMsg", "flashSuccessMessage();", true);
}

Any suggestions on how do invoke this behavior from the code-behind would be greatly appreciated.

link|improve this answer
I think I've just found the solution to my question above. It works when I change my code-behind as follows: ScriptManager.RegisterStartupScript(this.Page, Page.GetType(), "successMsg", "flashSuccessMessage();", true); – PongGod Dec 9 '10 at 17:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.