Bug 748764 - “Jump to Section” menu items has been cropped on IE 8.
Summary: “Jump to Section” menu items has been cropped on IE 8.
Keywords:
Status: CLOSED CURRENTRELEASE
Alias: None
Product: RHQ Project
Classification: Other
Component: Core UI
Version: unspecified
Hardware: Unspecified
OS: Unspecified
high
unspecified
Target Milestone: ---
: ---
Assignee: Mike Thompson
QA Contact: Mike Foley
URL:
Whiteboard:
Depends On: jon310-sprint11, rhq44-sprint11
Blocks: jon30-sprint8 817141
TreeView+ depends on / blocked
 
Reported: 2011-10-25 10:26 UTC by Jeeva Kandasamy
Modified: 2012-05-01 19:00 UTC (History)
3 users (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2012-05-01 19:00:00 UTC
Embargoed:


Attachments (Terms of Use)
“Jump to Section” menu on System Settings + IE 8 browser details (395.28 KB, image/jpeg)
2011-10-25 10:26 UTC, Jeeva Kandasamy
no flags Details
“Jump to Section” menu on Connection Settings (186.95 KB, image/jpeg)
2011-10-25 10:27 UTC, Jeeva Kandasamy
no flags Details
“Jump to Section” menu on Configuration page (183.09 KB, image/jpeg)
2011-10-25 10:30 UTC, Jeeva Kandasamy
no flags Details

Description Jeeva Kandasamy 2011-10-25 10:26:58 UTC
Created attachment 530047 [details]
“Jump to Section” menu on System Settings + IE 8 browser details

Description of problem:
“Jump to Section” menu items has been cropped on IE 8.

Version-Release number of selected component (if applicable):
Version: 4.1.0-SNAPSHOT
Build Number: 7911e52
GWT Version: 2.0.4
SmartGWT Version: 2.4
Browser IE 8 [Browser details screenshot is attached]

How reproducible:
100%


Steps to Reproduce:
1. Logon to RHQ/JON GUI
2. Navigate to “Administration--> System Settings”
3. Issue is happening not only on “System Settings”, We can see this where ever we have “Jump to Section” menu.
  
Actual results:
“Jump to Section” menu items has been cropped

Expected results:
“Jump to Section” menu items will be displayed 100%


Additional info: Screen-shorts are attached

Comment 1 Jeeva Kandasamy 2011-10-25 10:27:52 UTC
Created attachment 530048 [details]
“Jump to Section” menu on Connection Settings

Comment 2 Jeeva Kandasamy 2011-10-25 10:30:22 UTC
Created attachment 530049 [details]
“Jump to Section” menu on Configuration page

Comment 3 John Mazzitelli 2011-11-14 18:19:28 UTC
for the record, this is the menu created in ConfigurationEditor.buildToolStrip():

        Menu menu = new LocatableMenu(toolStrip.extendLocatorId("JumpMenu"));
        for (SectionStackSection section : sectionStack.getSections()) {
            MenuItem item = new MenuItem(section.getTitle());
            item.setAttribute("name", section.getName());
            item.addClickHandler(new ClickHandler() {
                public void onClick(MenuItemClickEvent event) {
                    int index = event.getMenu().getItemNum(event.getItem());
                    sectionStack.expandSection(index);
                    sectionStack.showSection(index);
                }
            });
            menu.addItem(item);
        }
        menu.addItem(new MenuItemSeparator());

        MenuItem hideAllItem = new MenuItem(MSG.view_configEdit_hideAll());
        hideAllItem.addClickHandler(new ClickHandler() {
            public void onClick(MenuItemClickEvent event) {
                for (int i = 0; i < sectionStack.getSections().length; i++) {
                    sectionStack.collapseSection(i);
                }
            }
        });
        menu.addItem(hideAllItem);

Comment 4 John Mazzitelli 2011-11-14 20:37:29 UTC
I've tried several things to increase the width and nothing is working. I suspect this is a smartgwt bug in the IE javascript.

I've tried combinations of:

        menu.setAutoFitData(Autofit.HORIZONTAL);
        menu.setAutoFitFieldWidths(true);
        menu.setWidth100();
        menu.setAutoWidth();

These affect the width of the menu canvas, but the title text is still cut off.

Comment 5 John Mazzitelli 2012-04-04 18:25:18 UTC
reassigning to mike - I think he may have already fixed this.

Mike - see if the new smartgwt upgrade fixed this or if you already fixed this (for some reason, I think I remember you saying you did some IE testing/fixing??)

Comment 6 Mike Foley 2012-04-24 00:47:35 UTC
let's revisit this to make sure we fix all the identified IE8 issues

Comment 7 Mike Foley 2012-04-24 00:59:32 UTC
setting priority to HIGH and sprint 11 tracker

Comment 8 Mike Foley 2012-05-01 19:00:00 UTC
this seems fine in RHQ 4.4 (JON 3.1 ) with IE8


Note You need to log in before you can comment on or make changes to this bug.