Completed
Last Updated: 15 Feb 2014 11:03 by Jesse Dyck
ADMIN
Created by: Stefan
Comments: 1
Category: PageView
Type: Bug Report
14
RadPageView has ten pages. Each page contains TableLayoutPanel (2 columns and 10 rows) and in each cell there is RadControl (textBox, checkbox etc). 

The result is that when pages are being changed, RadPageView show slow performance. Same scenario with standard controls works well.

Further investigations on the case show this:
"I had the same issue and I found other workaround. In my case I had TableLayoutPanel with RadSplittButton in each cell and each RadSplitButon was set as Dock = Fill. If I set AutoSize = false for RadSplitButton then the performance was ok and everything looks ok too."
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
Steps to reproduce:
1. Add a form with RadPageView on it
2. Add RadPageViewPage
3. In the designer file there will be the following line: // TODO: Code generation for '' failed because of Exception 'Invalid Primitive Type: System.IntPtr. Consider using CodeObjectCreateExpression.'.
Completed
Last Updated: 23 Dec 2011 04:42 by ADMIN
The Image property of any RadPageViewPage cannot be set from the Visual Style Builder. The only way to set the image is through code.
Unplanned
Last Updated: 17 Apr 2024 14:31 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 3
Category: PageView
Type: Bug Report
4
To reproduce: please refer to the attached sample project and gif file. The purpose is to select the last added page. However, the multi-line tabs are not ordered correctly at all compared to the TabControl.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
Let's say that you have a RadForm with a RadPageView in it. This pageview has several pages in it. In one of the pages there are a RadGroupBox with a RadLabel in it and a RadLabel directly placed on the page. At design-time the groupbox and the labels have the backcolor of the page. At runtime, these controls get the color of the RadForm. However, the behavior should be one and the same.
Completed
Last Updated: 11 May 2015 10:27 by ADMIN
To reproduce:
- Add RadPageView change the view  to ExplorerBar and add some pages with controls.
- Start the application expand all pages and scroll.

Workaround:
class MyPageView : RadPageView
{
    protected override RadPageViewElement CreateUI()
    {
        if (this.ViewMode == PageViewMode.ExplorerBar)
        {
            return new MyExplorerBarElement();
        }
        return base.CreateUI();
    }
   
}

class MyExplorerBarElement : RadPageViewExplorerBarElement
{
    protected override bool IsChildElementExternal(Telerik.WinControls.RadElement element)
    {
        return !(element is RadPageViewElementBase) && base.IsChildElementExternal(element);
    }
    protected override Type ThemeEffectiveType
    {
        get
        {
            return typeof(RadPageViewExplorerBarElement);
        }
    }
}
Completed
Last Updated: 22 May 2015 10:54 by ADMIN
1. Place a RadPageView in ExplorerBar view mode on a from.
2. Add page and place any RadControl in the page content panel.
3. Close (Collapse) the page.
4. Save and close the form.
5. Open the form and open(expand) the page and you will see that the control will be stretched more than when you saved the form.
Unplanned
Last Updated: 30 Mar 2016 09:35 by Jesse Dyck
It appears that when the contents of the RadPageViewPage is changed its height stays the same. fig1 shows the height before content is modified fig2 shows the height after content is modified(pressing ‘Next’ button), fig3 shows the height after one of the RadPageViewPage tabs is clicked, clicking 'Next' after that keeps the same height. It appears that if a tab is clicked the RadPageView resizes itself. So how can I make the RadPageView resize itself to its content programmatically.

Workaround: increase and decrease the Width of RadPageView to force the layout.
                rpv.Width += 1;
                rpv.Width -= 1;
Completed
Last Updated: 28 Jul 2014 08:48 by ADMIN
- create RadPageView in ExplorerBar mode with just one page
- subscribe to the PageExpanded/PageCollapsed events and print the value of the IsContentVisible property in each event handler. 
The result is that when the event is fired the property is not set.
Completed
Last Updated: 09 Sep 2014 12:06 by ADMIN
Steps to reproduce:
1. Drag a page view to a form and add two pages to it.
2. Add a button on the first page.
3. Drag a button to the form and in its Click event handler add code to change the selected page of the page view to the second one.
4. Add an event handler for the Enter event of the button on the first page.
Run the project and when you click the button to change the page you will see that the button on the first page gets the focus.
Completed
Last Updated: 17 Oct 2014 10:15 by ADMIN
When you dynamically remove a page from RadPageView when it is in ExplorerBarView, its header remains on your form.
Completed
Last Updated: 14 Nov 2014 13:07 by ADMIN
Steps to reproduce:

1. Add a RadPageView to a form and add a page
2. Add some controls to the page.
3. Open the RadPageView smart tag and click Remove Page
4. Select from Visual Studio Edit->Undo and you will see that the page will be restored but the controls on it will not be restored properly.
If one removes the page using the keyboard Delete key the undo functionality of VS works correctly.
Completed
Last Updated: 30 Nov 2010 04:40 by ADMIN
ADMIN
Created by: Ivan Petrov
Comments: 0
Category: PageView
Type: Bug Report
2
RadPageView localization can be set only before the Application.Run line, otherwise it does not take effect
Completed
Last Updated: 22 Mar 2011 03:25 by ADMIN
If you run your project in debug mode and try to select a page in the desginer, the designer of RadPageView gets broken.
Completed
Last Updated: 14 Jul 2011 11:05 by ADMIN
ADMIN
Created by: Jack
Comments: 0
Category: PageView
Type: Bug Report
2
HandleCreated should fire for all pages in RadPageView
Completed
Last Updated: 22 Feb 2012 05:58 by ADMIN
FIX. RadPageView - setting the Font of the control or element in OutlookMode does not work
The complex structure of the control does not allow applying a font to all inner elements in all views through a single line of code. Here is how to handle the different cases:
1. In Strip view mode set the Font property of the control (RadPageView1.Font)
2. In all other views set the Font property of the ViewElement (RadPageView1.ViewElement.Font). Note that font will be applied only to the items. To set the font of the header and the footer use the following properties: RadPageView1.ViewElement.Header.Font and RadPageView1.ViewElement.Footer.Font.
Completed
Last Updated: 16 Jul 2012 04:29 by ADMIN
When RadPageView is in Backstage mode, one can only navigate between the tabs in the same group using the arrow keys.
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Alexander
Comments: 0
Category: PageView
Type: Bug Report
2
The issue appears when the SelectedPageChanging event is cancelled and a MessageBox is shown in the event handler.
Declined
Last Updated: 23 Jul 2014 16:23 by ADMIN
FIX. RadPageView when color blending is added, the control flickers.
Completed
Last Updated: 25 Jul 2014 08:40 by ADMIN
RadPageView - In BackstageView the tool tip of item close button is showing if you set ShowItemCloseButton property to true.

Work Around:
set ShowItemCloseButton property to false.
1 2 3 4