This is a migrated thread and some comments may be shown as answers.

IsMinimizable

5 Answers 104 Views
RibbonView and RibbonWindow
This is a migrated thread and some comments may be shown as answers.
Jonathan
Top achievements
Rank 1
Jonathan asked on 04 Oct 2011, 05:32 PM
With IsMinimizable="false", I can still minimize the ribbon by double-clicking the tab header. Is this a bug? How do I disable header double click minimizing the ribbon?

5 Answers, 1 is accepted

Sort by
0
Petar Mladenov
Telerik team
answered on 05 Oct 2011, 04:20 PM
Hi Jonathan,

 We were unable to reproduce this unexpected behaviour using the RadRibbonView from Q2 2011. Could you please examine our test project and modify it if needed so that the problem occusrs? Thank you for your cooperation.

Regards,
Petar Mladenov
the Telerik team

Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>

0
Jonathan
Top achievements
Rank 1
answered on 05 Oct 2011, 05:02 PM
I found the bug. If you put a backstage menu in the ribbon view, minimize="false" no longer works.
0
Petar Mladenov
Telerik team
answered on 07 Oct 2011, 03:51 PM
Hello Jonathan,

 We reproduced this and we logged it as a bug in our PITS. We also updated your telerik account points as a thanks for your cooperation. Please accept us for the caused inconvenience. We'll do our best to have this fixed for the Q3 2011 official release. 

All the best,
Petar Mladenov
the Telerik team

Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>

0
Jonathan
Top achievements
Rank 1
answered on 10 Oct 2011, 02:39 PM
Great.

Is there a way that we can allow minimizing (allow expanded and collapsed), but not allow the "overlay" state, where the ribbon menu floats over the content? Or, even better, allow the "overlay" state, but collapse it on mouseout?

Thanks,
Jon
0
Petar Mladenov
Telerik team
answered on 13 Oct 2011, 01:17 PM
Hi Jonathan,

 In order to prevent the opening of the Popup of the RadRibbonView, you can handle the PreviewPopupOpened event like so:

private void ribbonView_PreviewPopupOpened(object sender, Telerik.Windows.RadRoutedEventArgs e)
      {
          e.Handled = true;
      }
Collapsing the Popup on Mouse event cannot be implemented due to some internal setters in properties of the Popup.
Feel free to ask if you need further assistance.All the best,
Petar Mladenov
the Telerik team

Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>

Tags
RibbonView and RibbonWindow
Asked by
Jonathan
Top achievements
Rank 1
Answers by
Petar Mladenov
Telerik team
Jonathan
Top achievements
Rank 1
Share this question
or