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

Window Fade-in?

2 Answers 127 Views
Window
This is a migrated thread and some comments may be shown as answers.
SuperRobot5000
Top achievements
Rank 2
SuperRobot5000 asked on 17 Nov 2008, 02:58 AM
Hi there,

Just wondering if there is any way to allow the RadWindow to fade into the site (including disabling the background window), instead of the window suddenly poping up or building?

Cheers,
me!

P.S.  Sorry, I accidentally posted this question in the "RadControls ASP.NET" forum first!!

2 Answers, 1 is accepted

Sort by
0
Accepted
Princy
Top achievements
Rank 2
answered on 17 Nov 2008, 06:48 AM
Hi Vimal Naran,

You can set the property Animation="Fade" and Modal="true" in order to achieve this feature. The Modal property controls whether the window appears as a modal dialog. When the window is modal, the positioning properties (OffsetElementId, Left, and Top) have no effect. Setting the "Modal" property to true will disable the parent window when the RadWindow loads.

ASPX:
  <telerik:RadWindowManager ID="RadWindowManager1" runat="server"  > 
        <Windows> 
            <telerik:RadWindow runat="server"   
                InitialBehavior="None" Left="" NavigateUrl="http://www.google.com"   
                Top="" VisibleOnPageLoad="True" OnClientShow="ShowWindow" Animation="Fade" Modal="True">  
            </telerik:RadWindow> 
        </Windows> 
    </telerik:RadWindowManager> 


Thanks,
Princy.
0
SuperRobot5000
Top achievements
Rank 2
answered on 17 Nov 2008, 07:04 PM
You are right, sorry I should have dug alittle deeper first.

Are there any online demos to show it in action?
Tags
Window
Asked by
SuperRobot5000
Top achievements
Rank 2
Answers by
Princy
Top achievements
Rank 2
SuperRobot5000
Top achievements
Rank 2
Share this question
or