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

Ribbonbar StartMenu issue

2 Answers 36 Views
RibbonBar
This is a migrated thread and some comments may be shown as answers.
Deasun
Top achievements
Rank 3
Bronze
Bronze
Bronze
Deasun asked on 04 Jun 2019, 07:51 PM

Evening all,

I have a button on the startmenu that calls up a Feedback form for the users to fill in.

No problems getting the form to appear.

My issue is the Startmenu dos not disappear, so it appears on top of the new form till you click on it.

I tried setting focus on the new form but that did nothing.

Is there some sort of Startmenu.visibility.hide I could call after clicking the menu button that calls up the 2nd form?

Or is this a bug! :(

See attached image of the issue.

 

2 Answers, 1 is accepted

Sort by
0
Dimitar
Telerik team
answered on 05 Jun 2019, 12:14 PM
Hello Deasun,

If you are showing a modal dialog (using the ShowDialog method) you need to close the popup before showing the new form. For example:
private void RadMenuButtonItem1_Click(object sender, EventArgs e)
{
    radRibbonBar1.RibbonBarElement.ApplicationButtonElement.HideDropDown();
    new RadForm().ShowDialog();
}

I hope this will be useful. Should you have further questions, I would be glad to help.

Regards,
Dimitar
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.
0
Deasun
Top achievements
Rank 3
Bronze
Bronze
Bronze
answered on 05 Jun 2019, 12:22 PM

Thank you.

That worked perfectly.

Tags
RibbonBar
Asked by
Deasun
Top achievements
Rank 3
Bronze
Bronze
Bronze
Answers by
Dimitar
Telerik team
Deasun
Top achievements
Rank 3
Bronze
Bronze
Bronze
Share this question
or