When I use the Crystal theme on the ribbonbar items disappear from the backstage view.
I found the same behavior on your demo also. So I'm giving you the steps to replicate the behavior there. When I switch to other themes the issue does not seem to happen.
Please let me know if I can provide any other information to help resolve this issue.
Thank you
Eddy
Hello, Eduardo,
To follow up on this I would like to suggest the following workaround for the discussed issue with ribbon bar items in the backstage view:
public Form1()
{
InitializeComponent();
foreach (RadItem item inthis.radRibbonBarBackstageView1.Items)
{
BackstageTabItem tabItem = item as BackstageTabItem;
if (tabItem != null)
{
tabItem.Page.VisibleChanged += this.Page_VisibleChanged;
}
}
}
private void Page_VisibleChanged(object sender, EventArgs e)
{
BackstageViewPage page = sender as BackstageViewPage;
if (page != null && !page.Visible && this.radRibbonBarBackstageView1.SelectedItem == page.Item)
{
page.VisibleChanged -= this.Page_VisibleChanged;
page.Visible = true;
page.VisibleChanged += this.Page_VisibleChanged;
}
}
I hope this helps.
Regards,
Nadya
Progress Telerik
Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.
Hello, Eduardo,
Thank you for writing.
Following the provided steps I was able to reproduce the issue in our Demo application with Crystal theme. This is why I have logged it on our Feedback portal by making this thread public. You can track its progress, and add your comments on the following link - feedback item.
I have also updated your Telerik Points for the report.
I hope this helps. If you have any other questions please let me know.
Regards,
Nadya
Progress Telerik
Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.