Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: PageView
Type: Feature Request
1
There should be a property at RadPanelBar which gets/sets the selected group.
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
Workaround: set text manually on ToolTipTextNeeded event.
 private void Form1_Load(object sender, EventArgs e)
        {
            this.radPageView1.ToolTipTextNeeded += new Telerik.WinControls.ToolTipTextNeededEventHandler(radPageView1_ToolTipTextNeeded);
        }

        void radPageView1_ToolTipTextNeeded(object sender, Telerik.WinControls.ToolTipTextNeededEventArgs e)
        {
            RadPageViewStripItem item = sender as RadPageViewStripItem;
            if (item != null)
            {
                e.ToolTipText = item.Text;
            }
        }
Completed
Last Updated: 16 May 2014 15:27 by Jacky
ADD. RadPageView - create new strip items layout mode, allowing to arrange them in rows.
Declined
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Martin Vasilev
Comments: 1
Category: PageView
Type: Feature Request
1
Add scroll to a PanelBarGroupElement functionality
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 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.
Completed
Last Updated: 28 Feb 2014 10:35 by ADMIN
ADMIN
Created by: Georgi I. Georgiev
Comments: 0
Category: PageView
Type: Bug Report
0
To reproduce: Add a page to RadPageView with ViewMode set to ExplorerBar. Add controls so that the scrollbar appears.Set AutoScroll to true. Now if you tab through the controls you will see visual glitches and incorrect behavior.
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: 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: 15 Feb 2014 10:52 by ADMIN
There should be such property which is available in the properties window. The property should get/set the default selected page for a RadPageView when it is loaded for the first time. Also, this property should not be affected by changing the selected page in the Visual Studio designer.
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: 21 Jun 2012 03:59 by ADMIN
Currently, when trying to replace the item, exception is thrown.
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: 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: 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: 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: 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.