I've recently tried out the SuggestBox widget. I've used the following
code, which I took from javadoc:
MultiWordSuggestOracle oracle = new MultiWordSuggestOracle();
oracle.add("Cat");
oracle.add("Dog");
oracle.add("Horse");
oracle.add("Canary");
SuggestBox box = new SuggestBox(oracle);
RootPanel.get().add(box);
If I type, say 'h', in the text box the suggestion list appears
correctly. If I click somewhere beneath the box in Firefox the list
disappears as expected. If I do the same in IE8 the list does not
disappear. If I turn the quirks mode, everything works correctly.
As far as I understand the problem is not just with SuggestBox as it
uses a PopupPanel which in turn registers a NativePreviewHandler which
does not seem to receive an event.
I have tried both: gwt 1.7.1 and 2.0 and got the same results.
So is this a simple bug which will be fixed at some point or a serious
technological limitation?
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.