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

Open RadPage in Another FrameContainer

2 Answers 47 Views
Navigation
This is a migrated thread and some comments may be shown as answers.
Narendra Joshi
Top achievements
Rank 1
Narendra Joshi asked on 22 Jun 2009, 01:48 AM
I would like to open a New Page in the RadFrameContainer present on the current Page and not replacing the current page.
 
I am having RadPages which I am opening in RadFrameContainer

My Application_Startup look like something to this -
private void Application_Startup(object sender, StartupEventArgs e) 
            this.RootVisual = new RadFrameContainer(); 
            NavigationService service = NavigationService.GetNavigationService(); 
            service.Target = this.RootVisual as RadFrameContainer; 
                         
            service.Transition = new FadeTransition(); 
            service.Navigate(new Page0()); 
 
            .... 
            .... 
 

Page0 is redirecting user to Page 1 with transition replacing page0
On page1 I am having another RadFrameContainer (imagine outlook like structure) 

On certain events I would like to open Page2 in the RadFrameContainer on this Page(Page1) 
I tried various alternatives but every time the page2 gets displayed replacing Page1. Same like Page1 was displayed replacing Page0.

Have you faced this situation and have somthing to share with me?

Thanks in advance. 

2 Answers, 1 is accepted

Sort by
0
Accepted
Kiril Stanoev
Telerik team
answered on 24 Jun 2009, 03:28 PM
Hi Joshi,

I have created a sample project demonstrating the functionality you are describing.

In the project, Page0 is loaded automatically.
After clicking a button on Page0, user is redirected on Page1.
After clicking a button on Page1, user is still in Page1, but Page2 appears in a container that is in Page1.


Have a look at the sample project and let me know how this works for you.
If you have additional questions or comments, let us know as soon as possible.

Regards,
Kiril Stanoev
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
0
Narendra Joshi
Top achievements
Rank 1
answered on 26 Jun 2009, 12:16 AM
Thanks a Lot !

Tags
Navigation
Asked by
Narendra Joshi
Top achievements
Rank 1
Answers by
Kiril Stanoev
Telerik team
Narendra Joshi
Top achievements
Rank 1
Share this question
or