Completed
Last Updated: 26 Mar 2019 11:26 by Dimitar
Jared
Created on: 27 Feb 2019 10:02
Category: PageView
Type: Bug Report
1
RadPageView: Navigation view doesn't display the title of the selected page when loading the form
Please refer to the attached sample project which behavior is illustrated in the gif file. When you load the form, the title of the selected page is not displayed. However, if you select a new page, it is updated accordingly.
2 comments
Dimitar
Posted on: 26 Mar 2019 11:26
Hello, 
 
A Fix will be available in LIB Version 2019.1.401 scheduled for April 1st.

Best regards, 
Dimitar
ADMIN
Dess | Tech Support Engineer, Principal
Posted on: 27 Feb 2019 10:08
Hello, Jared,  

Thank you for reporting this behavior.

I have also updated your Telerik points.

Currently, the possible solution that I can suggest is to refresh the selected page:

private void RadForm1_Load(object sender, EventArgs e)
{
    var selectedPage = this.radPageView1.SelectedPage;
    this.radPageView1.SelectedPage = null;
    this.radPageView1.SelectedPage = selectedPage;
}

I hope this helps.

Regards,
Dess | Tech Support Engineer, Sr.
Progress Telerik

Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.