Completed
Last Updated: 10 Dec 2010 05:06 by ADMIN
1. Create a new project containing RadMenu in MDI form
2. Add some child windows
3. Run the project
4. Open the menu
Completed
Last Updated: 02 Dec 2010 05:14 by ADMIN
FIX. RadMenuItem does not repaint itself after being re-enabled
Completed
Last Updated: 12 Nov 2010 09:10 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category:
Type: Bug Report
0
RadMenu does not clear its IsMouseDown state after being clicked and the pointer leaves the menu item before the mouse button is released
Completed
Last Updated: 20 Oct 2010 12:41 by Jesse Dyck
ADMIN
Created by: Stefan
Comments: 1
Category:
Type: Feature Request
2
This feature request concerns adding a Right to left support (RTL) in RadMenu.
Completed
Last Updated: 20 Sep 2010 04:36 by ADMIN
When RadMenu is on focus and some of the RadMenuItems has visibility set to Hidden those items should be visible in design time.
Completed
Last Updated: 08 Sep 2010 04:27 by ADMIN
ADMIN
Created by: Jack
Comments: 0
Category:
Type: Feature Request
0
Menu items should stretch to fill the available area.
Completed
Last Updated: 10 Aug 2010 09:05 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category:
Type: Bug Report
0
After adding a few items in RadMenu, and changing their visibility settings:
1.When turned back to visible, they does not appear
2. When they are collapsed, their empty spots are still there (although AutoSize = true)

int i = 1;
        void radMenuItem1_DropDownOpening(object sender, CancelEventArgs e)
        {
            if (i == 0)
            {
                radMenuButtonItem2.Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
                radMenuButtonItem3.Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
                i++;
                
            }
            else
            {
                radMenuButtonItem2.Visibility = Telerik.WinControls.ElementVisibility.Visible;
                radMenuButtonItem3.Visibility = Telerik.WinControls.ElementVisibility.Visible;
                i--;
            }
            radMenuItem1.DropDown.PopupElement.InvalidateMeasure();
            radMenuItem1.DropDown.PopupElement.InvalidateArrange();
            radMenuItem1.DropDown.PopupElement.UpdateLayout();
        }
Completed
Last Updated: 23 Jul 2010 10:03 by ADMIN
- We have project called ProjectOne with a Form1 in in.
- this form inherits from RadForm
- add RadMenu with one item in it
- Create second project called ProjectTwo with Form2 in it
- make Form2 inherit from Form1.
- design time error appears.
Completed
Last Updated: 04 Feb 2010 18:31 by ADMIN
SubMenu items MUST completely occlude the right pane of the Application Menu, regardless of the number of items available in the menu options.
Completed
Last Updated: 22 Dec 2009 08:14 by ADMIN
ADMIN
Created by: Georgi
Comments: 0
Category:
Type: Feature Request
2
Automatically display scrollbars when total menu item height exceeds the available screen area.
Completed
Last Updated: 03 Dec 2009 17:18 by ADMIN
RadMenu accepts keyboard commands even though its parent Form is not active. The normal behavior is that RadMenu processes keyboard only when its parent form is activated.
1 2 3 4 5