Completed
Last Updated: 16 Aug 2017 08:14 by ADMIN
ADMIN
Created by: Boryana
Comments: 1
Category: PageView
Type: Feature Request
4
Show the focus cue of the selected tab in a StripView 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.
Declined
Last Updated: 20 Feb 2014 15:23 by ADMIN
ADMIN
Created by: Boryana
Comments: 1
Category: PageView
Type: Feature Request
7
Add a Visible property to RadPageView Pages for all modes
Completed
Last Updated: 10 Feb 2012 04:19 by ADMIN
Provide an easier way to change the size of the tabs panel of RadPageView in Backstage mode at design time.
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: 20 Oct 2014 11:47 by ADMIN
IMPROVE. RadPageView - in ExplorerBar mode, add a method which will scroll the item into view and the item will be on the top on the control. Currently, the ScrollToItem method, scrolls to the item and whenever it finds it the scrolling is stopped. 
Alternatively, add a method which will ensure that the item and its content are is visible.

Resolution: 
Add the ScrollToControl method. Please take a look at the following code snippet how to use it: 
RadPageViewExplorerBarElement view = radPageView1.ViewElement as RadPageViewExplorerBarElement;            
view.ScrollToControl(control);
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.
Completed
Last Updated: 19 Dec 2011 07:02 by ADMIN
1. Create a new project with RadPageView.
2. Add two buttons.
3. On first button click add 100 pages.
4. On second button click remove these pages by calling the Clear method of the Pages collection.
5. Run the project and press these buttons several times.
Completed
Last Updated: 23 Nov 2011 01:48 by ADMIN
Additionally, using the EnsureItemVisible of the ViewElement in Form.Load or Form.Shown does not bring the item into view also.

To reproduce:
1. Create a form with page view (size 250,250).
2. Add 10 pages and keep the last one selected
3. On Form.Load or Form.Shown set the selected page to the first page => the page is selected but the last tab is visible instead of the first one.
Completed
Last Updated: 22 Nov 2011 09:07 by ADMIN
FIX. RadPageView in ExplorerBar mode- the page items are getting hidden when page with auto size content is expanded.
Completed
Last Updated: 23 Feb 2015 08:02 by ADMIN
ADD. RadPageView - allow RadPageViewItems to accept other RadElements. Currently, they are not arranged.
Completed
Last Updated: 28 Jul 2014 11:43 by ADMIN
1. Add RadPageView to a form
2. In the code behind, after InitializeComponent set the ViewMode to ExplorerBar
3. Subscribe to the ItemCreating event of the control
4. Create three RadPageViewPages and add them to the control
5. Run the application
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.
Completed
Last Updated: 05 Oct 2011 09:08 by Jesse Dyck
There should be a method called BeginEdit of the item, which puts it in edit mode. Also, when the user pressed F2 the item should begin editing. The latter should be controlled via AllowEdit property.
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: 16 May 2014 15:27 by Jacky
ADD. RadPageView - create new strip items layout mode, allowing to arrange them in rows.
Completed
Last Updated: 28 Jul 2011 07:32 by ADMIN
Currently it is not possible to scroll to the active page when expanding or selecting it in explorer view.
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: 05 Jun 2014 07:08 by ADMIN
When you try to programmatically select a page in the Form_Load of the Form that holds RadPageView, the page becomes selected, but the content that is shown for the page is not correct.
Completed
Last Updated: 13 Jun 2011 04:32 by ADMIN
If you have a RadPageView in Strip mode with the DropDown button for the overflow menu and you double-click that button, you get a menu which lists the PageView items twice.