Completed
Last Updated: 01 Jul 2019 14:58 by ADMIN
Release R3 2019 (LIB 2019.2.708)
Mihajlo
Created on: 31 May 2019 11:37
Category: RibbonBar
Type: Bug Report
0
RadRibbonBar: collapsed groups are not refreshed properly after resizing the form

Please refer to the attached sample project and follow the steps from the gif file. 

Shrink the ribbon to create sub groups for expanding. Then, maximize the form. You will notice that the groups are still collapsed although there is so much space.

1 comment
ADMIN
Dess | Tech Support Engineer, Principal
Posted on: 31 May 2019 11:57
Hello, Mihajlo,     
 
Thank you for reporting this issue. It seems to be a regression in R2 2019.

I have also updated your Telerik points.

Currently, the possible solution that I can suggest is to refresh the ribbon layout.

public RadForm1()
{
    InitializeComponent();
 
    this.richTextEditorRibbonBar1.SizeChanged+=richTextEditorRibbonBar1_SizeChanged;
}
 
private void richTextEditorRibbonBar1_SizeChanged(object sender, EventArgs e)
{
    this.richTextEditorRibbonBar1.LayoutMode = RibbonLayout.Simplified;
    this.richTextEditorRibbonBar1.LayoutMode = RibbonLayout.Default;
}

I hope this information 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.