Posted 07 Jul 2010 Link to this post
When the form initially loads the second RadPageViewPage is visible.
How can i force that when the form is initially loaded it should be the first RadPageViewPage that is visible !! Second how to change the view to a specific RadPageViewPage in the code at run time. Is there a property such as RadPageView.SelectedRadPageViewPage = 2. that will set the second RadPageViewPage to be visible etc etc . thanks IK
Hello Imran,
in the Designer you have to select the RadViewPageView that should be loaded at runtime when you leave the designer.
In code:
RadPageView.SelectedPage = RadPageViewPage1;
I hope this helps.
Ramius
Posted 16 Jul 2010 Link to this post
Posted 20 Jul 2010 Link to this post
Ramius in the previous post had used perfectly correct syntax. Anyway if you don't change the names and stay with the default ones consider this:
radPageView1.SelectedPage = radPageViewPage1;
Posted 29 Jan 2011 Link to this post
Me
.RadPageViewPage2.Item.Visibility = ElementVisibility.Collapsed
Posted 11 Feb 2011 Link to this post
using
System;
System.Collections.Generic;
System.Linq;
System.Text;
Telerik.WinControls.UI;
System.ComponentModel;
class
MyRadPageView : Telerik.WinControls.UI.RadPageView
{
[DefaultValue((
string
)
null
), Browsable(
true
)]
public
new
RadPageViewPage SelectedPage
get
return
base
.SelectedPage; }
set
.SelectedPage = value; }
}
override
ThemeClassName
typeof
(Telerik.WinControls.UI.RadPageView).FullName;
Posted 24 Aug 2012 Link to this post
Hello Telerik Team,
I have a problem with the radPageView. I have 3 pages and I want to add a radGridView in each page.
I do it like this:
this.radPageDepatisnet.Controls.Add(radGridViewWaitQueueDepatisnet); this.radPageOPS.Controls.Add(radGridViewWaitQueueOPS);
this. radPageWipo.Controls.Add(radGridViewWaitQueueWipo);
but in the 3rd page, I have no radGridView and I dont know why.
Can I help me please?
Thank you very much,
Best regards,
Alfonsina
Posted 29 Aug 2012 Link to this post
Posted 14 May 2013 Link to this post
Posted 17 May 2013 Link to this post