Unplanned
Last Updated: 13 Jan 2025 14:32 by ADMIN
Hardeepsingh
Created on: 13 Jan 2025 14:01
Category: NavigationView
Type: Bug Report
0
RadNavigationView: RadPageViewPage.Title property does not work

Setting the Title property should update the header text:

 this.radPageViewPage1.Title = "test";

1 comment
ADMIN
Nadya | Tech Support Engineer
Posted on: 13 Jan 2025 14:32

Hello,

Thank you for reporting this. You can use the following workaround until the fix is introduced.

 LightVisualElement lve = new LightVisualElement();
 public RadForm1()
 {
     InitializeComponent(); 

     this.radPageViewPage1.Title = "test";
     this.radNavigationView1.NavigationViewElement.HeaderElement.DrawText = false;
     this.radNavigationView1.NavigationViewElement.HeaderElement.Children.Add(lve);
     this.radNavigationView1.SelectedPageChanged += RadNavigationView1_SelectedPageChanged;
 }

 private void RadNavigationView1_SelectedPageChanged(object sender, EventArgs e)
 {
     lve.Text = this.radNavigationView1.SelectedPage.Title;
 }

Regards,
Nadya | Tech Support Engineer
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.