有没有人见过这个例外?我在mac上的GWT1.6.4上以托管模式运行。我正在使用AutoSuggest,它抛出了这个异常,试图显示弹出窗口。它在编译模式下工作得很好,但显然托管模式相当重要。
[ERROR] Uncaught exception escaped
com.google.gwt.core.client.JavaScriptException: (TypeError): Result of expression 'doc.getBoxObjectFor' [undefined] is not a function.
line: 71
sourceId: 1152617088
sourceURL: jar:file:/Users/holmes/.m2/repository/com/google/gwt/gwt-user/1.6.4/gwt-user-1.6.4.jar!/com/google/gwt/dom/client/DOMImplMozillaOld.java
expressionBeginOffset: 288
expressionCaretOffset: 307
expressionEndOffset: 313
at com.google.gwt.dom.client.DOMImplMozillaOld.getAbsoluteLeftImpl(Native Method)
at com.google.gwt.dom.client.DOMImplMozillaOld.getAbsoluteLeft(DOMImplMozillaOld.java:29)
at com.google.gwt.dom.client.Element$.getAbsoluteLeft$(Element.java:86)
at com.google.gwt.user.client.DOM.getAbsoluteLeft(DOM.java:646)
at com.google.gwt.user.client.ui.UIObject.getAbsoluteLeft(UIObject.java:487)
at com.google.gwt.user.client.ui.PopupPanel.position(PopupPanel.java:1015)
at com.google.gwt.user.client.ui.PopupPanel.access$5(PopupPanel.java:958)
at com.google.gwt.user.client.ui.PopupPanel$1.setPosition(PopupPanel.java:811)
at com.google.gwt.user.client.ui.PopupPanel.setPopupPositionAndShow(PopupPanel.java:700)
at com.google.gwt.user.client.ui.PopupPanel.showRelativeTo(PopupPanel.java:809)
at com.google.gwt.user.client.ui.SuggestBox.showSuggestions(SuggestBox.java:768)
at com.google.gwt.user.client.ui.SuggestBox.access$3(SuggestBox.java:738)
at com.google.gwt.user.client.ui.SuggestBox$1.onSuggestionsReady(SuggestBox.java:281)
at com.google.gwt.user.client.ui.MultiWordSuggestOracle.requestSuggestions(MultiWordSuggestOracle.java:225)
at com.google.gwt.user.client.ui.SuggestBox.showSuggestions(SuggestBox.java:640)
at com.google.gwt.user.client.ui.SuggestBox.refreshSuggestions(SuggestBox.java:713)
at com.google.gwt.user.client.ui.SuggestBox.access$6(SuggestBox.java:705)
at com.google.gwt.user.client.ui.SuggestBox$1TextBoxEvents.onKeyUp(SuggestBox.java:678)
at com.google.gwt.event.dom.client.KeyUpEvent.dispatch(KeyUpEvent.java:54)
at com.google.gwt.event.dom.client.KeyUpEvent.dispatch(KeyUpEvent.java:1)
at com.google.gwt.event.shared.HandlerManager$HandlerRegistry.fireEvent(HandlerManager.java:65)
at com.google.gwt.event.shared.HandlerManager$HandlerRegistry.access$1(HandlerManager.java:53)
at com.google.gwt.event.shared.HandlerManager.fireEvent(HandlerManager.java:178)
at com.google.gwt.user.client.ui.Widget.fireEvent(Widget.java:52)
at com.google.gwt.event.dom.client.DomEvent.fireNativeEvent(DomEvent.java:116)
at com.google.gwt.user.client.ui.Widget.onBrowserEvent(Widget.java:90)
at com.google.gwt.user.client.ui.TextBoxBase.onBrowserEvent(TextBoxBase.java:193)
at com.google.gwt.user.client.ui.Composite.onBrowserEvent(Composite.java:54)
at com.google.gwt.user.client.DOM.dispatchEventImpl(DOM.java:1320)
at com.google.gwt.user.client.DOM.dispatchEventAndCatch(DOM.java:1299)
at com.google.gwt.user.client.DOM.dispatchEvent(DOM.java:1262)
发布于 2009-11-22 20:37:46
在编译模式下使用Firefox3.7a1pre(“雷区”)时,我遇到了类似的问题。函数getBoxObjectFor已替换为getBoundingClientRect。这是我让GWT再次工作的变通方法。只需在开始时调用下面的方法,至少对我来说它是有效的。
private static native void firefox3compatibility() /*-{
if (!$doc.getBoxObjectFor) {
$doc.getBoxObjectFor = function (element) {
var box = element.getBoundingClientRect();
return { "x" : box.left, "y" : box.top,
"screenX": box.left, "screenY" : box.top,
"width" : box.width, "height" : box.height };
}
}
}-*/;
发布于 2010-02-04 15:01:44
这是一个很好的修复,但我还需要将screenX和screenY添加到返回的对象中:
private static native void firefox3compatibility() /-{ if (!$doc.getBoxObjectFor) { $doc.getBoxObjectFor = function (element) { var box = element.getBoundingClientRect(); return { "x" : box.left, "y" : box.top, "width" : box.width, "height" : box.height, "screenX": box.left, "screenY":box.top }; } } }-/;
发布于 2011-01-13 09:00:18
对于FF3.6,getBoxObjectFor
已被弃用。下面是在GWT中解决这个问题的问题:Issue 4605
https://stackoverflow.com/questions/1018997
复制相似问题