Neseek77 / google-web-toolkit-incubator

Automatically exported from code.google.com/p/google-web-toolkit-incubator
1 stars 0 forks source link

Naive mouseout/mouseover implementation in CellGridImpl #211

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What version of gwt and gwt-incubator are you using? changeset 1323

What OS and browser are you using? It's irrelevant, but FF3/Linux

Do you see this error in hosted mode, web mode, or both? Both

public class MouseOverDropDown extends Composite {
    public MouseOverDropDown() {
        DropDownListBox<Integer> dropDown = new 
            DropDownListBox<Integer>("Mouseover");
        dropDown.addItem("<span>mouseover</span>", 1);
        dropDown.addItem("<span>highlighting</span>", 2);
        dropDown.addItem("<span>won't work</span>", 3);
        dropDown.addItem("<span>with</span>", 4);
        dropDown.addItem("<span>html items.</span>", 5);
        initWidget(dropDown);
    }
}
Hopefully using the test case you have generously provided, what steps will
reproduce the problem? 
1. Create a DropDownListBox that contains html items and a custom highlight
style. The items never get highlighted on mouseover!

What is the expected output? What do you see instead?

Workaround if you have one: Attached a patch for CellGridImpl.

Please provide any additional information below,  and thank you for taking
the time and effort to report this issue, as good issue reports are
critical for our quest to make GWT's new widgets and libraries shine.

Original issue reported on code.google.com by adus...@gmail.com on 17 Dec 2008 at 10:30

Attachments:

GoogleCodeExporter commented 9 years ago
Thanks for taking the time to provide a solution!

Have you signed a contributor's agreement? As those are unfortunately needed 
for us
to accept patches.  

Here is the wiki page with more data:
http://code.google.com/p/google-web-toolkit-incubator/wiki/MakingIncubatorBetter

Original comment by ecc%google.com@gtempaccount.com on 7 Jan 2009 at 4:55

GoogleCodeExporter commented 9 years ago
Just signed the CLA online. I'm making heavy use of the incubator widgets and 
have
made a couple other fixes and improvements that I haven't submitted yet. I'll 
take a
look through those shortly and figure out if they're worth submitting.

Original comment by adus...@gmail.com on 9 Jan 2009 at 7:23