This is a migrated thread and some comments may be shown as answers.

animation

1 Answer 49 Views
Window
This is a migrated thread and some comments may be shown as answers.
jpa
Top achievements
Rank 1
jpa asked on 13 Jan 2011, 12:07 PM
I'm using q3 2010 controls.  I am using the Fade animation on a modal window. The first time I do a window.show(), it flashes the form quickly, and then it does my animation.  Any subsequent window.show() animates without this initial flashing.

1 Answer, 1 is accepted

Sort by
0
Svetlina Anati
Telerik team
answered on 18 Jan 2011, 11:47 AM
Hi jpa,

 I prepared the following test page based on your explanations and tested with the mentioned 2010.3.1215 version of RadControls:


<%@ Page Language="C#" %>
  
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <script type="text/javascript">
  
        function ShowWnd()
        {
            $find("<%=RadWindow1.ClientID %>").show();
        }
    </script>
    <asp:ScriptManager ID="mng" runat="server">
    </asp:ScriptManager>
    <asp:Button ID="LabBtn" runat="server" Text="Show RadWindow" OnClientClick="ShowWnd(); return false;" />
    <telerik:RadWindow ID="RadWindow1" runat="server" Animation="Fade" Modal="true">
        <ContentTemplate>
            TEST
        </ContentTemplate>
    </telerik:RadWindow>
    </form>
</body>
</html>

However, I could not reproduce the problem you report and also there was no difference between first show and next shows. Would you please provide the following information:

1) The exact browsers under which you reproduce the problem
2) If you do not reproduce the problem with my page, modify it in order to reproduce the problem and to be still fully runnable and share the full source here
3) A video capture of the problem with the very same code shared here along with a detailed explanation

Once I receive this I will do my best to help.


Kind regards,
Svetlina
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
Tags
Window
Asked by
jpa
Top achievements
Rank 1
Answers by
Svetlina Anati
Telerik team
Share this question
or