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

Avoid page load when radwindow is open or close

4 Answers 186 Views
Window
This is a migrated thread and some comments may be shown as answers.
Lenin
Top achievements
Rank 1
Lenin asked on 31 Jan 2009, 02:26 PM
Hi all,
Can u avoid every time page is loaded when the radwindow is open or close?
please let me know

4 Answers, 1 is accepted

Sort by
0
Georgi Tunev
Telerik team
answered on 02 Feb 2009, 12:49 PM
Hi Lenin,

Could you please provide more details on your question? What exactly is your setup and how do you open the RadWindow control?


All the best,
Georgi Tunev
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Sushobhit
Top achievements
Rank 2
answered on 03 Jan 2012, 07:34 AM
hi all 

I have open a rad window on button click event and every time when rad window is open the parent page always reloaded can any one help for prevent parent page reload when the rad window is open .

this is the following code for open the rad window :----

                RWManager.Windows.Clear();
                    RadWindow newWindow = new RadWindow();
                    newWindow.NavigateUrl = "~/ABC.aspx";
                    newWindow.Width = Unit.Pixel(470);
                    newWindow.AutoSize = true;
                    newWindow.AutoSizeBehaviors = Telerik.Web.UI.WindowAutoSizeBehaviors.Height;
                    newWindow.VisibleOnPageLoad = true;
                    RWManager.EnableViewState = false;
                    RWManager.Windows.Add(newWindow);
0
Sushobhit
Top achievements
Rank 2
answered on 03 Jan 2012, 07:40 AM
Hi all

i have open a rad window by button click this is the following :-  
                 RWManager.Windows.Clear();
                    RadWindow newWindow = new RadWindow();
                    newWindow.NavigateUrl = "~/AddNewGroupWindow.aspx";
                    newWindow.Width = Unit.Pixel(470);
                    newWindow.AutoSize = true;
                    newWindow.AutoSizeBehaviors = Telerik.Web.UI.WindowAutoSizeBehaviors.Height;
                    newWindow.VisibleOnPageLoad = true;
                    RWManager.EnableViewState = false;
                    RWManager.Windows.Add(newWindow);

but every time when the rad window are open then every time parent page always reloaded so please help me for this problem 
0
Princy
Top achievements
Rank 2
answered on 03 Jan 2012, 07:54 AM
Hello,

Take a look into the following code library.
Opening RadWindow from the server

Thanks,
Princy.
Tags
Window
Asked by
Lenin
Top achievements
Rank 1
Answers by
Georgi Tunev
Telerik team
Sushobhit
Top achievements
Rank 2
Princy
Top achievements
Rank 2
Share this question
or