Permission Denied in IE after 2.7.0 upgrade

2015-08-14 Thread Norm Deane
We recently upgraded from GWT 2.5.0 to 2.7.0 and since the upgrade our app no longer works in IE 8/9/10. The error we're getting is... SCRIPT70: Permission denied orderentry.nocache.js, line 4 character 123 And that line happens to be: u=a.contentDocument; For a little background our app is

Re: SuggestBox and HasBlurHandlers

2013-11-04 Thread Norm Deane
Yes we're seeing situations where it doesn't fire a ValueChangedEvent. If you type some characters, arrow down into the search results, then tab out of the field it selects that suggestion, sets the textbox value, but doesn't fire a ValueChangedEvent. On Sunday, November 3, 2013 9:42:40 AM

Re: SuggestBox and HasBlurHandlers

2013-11-04 Thread Norm Deane
We're doing that. One solution that almost worked was to listen for both the onBlur from the textbox and the onClose from our SuggestionDisplay's PopupPanel. In the onBlur for the textbox we would look to see if the SuggestionDisplay's PopupPanel was still visible. If so we knew they could be

Re: SuggestBox and HasBlurHandlers

2013-11-02 Thread Norm Deane
We're using a SuggestBox as an in-place editor and need to know when they're blurred from the SuggestBox so we can fire validation and other logic. If we only listen for the blur on the TextBox we can end up firing this logic while they're in the SuggestionDisplay which is premature. Thanks,

Re: SuggestBox and HasBlurHandlers

2013-11-02 Thread Norm Deane
We're using a SuggestBox as an in-place editor and need to know when they're blurred from the SuggestBox so we can fire validation and other logic. If we only listen for the blur on the TextBox we can end up firing this logic while they're in the SuggestionDisplay which is premature. Thanks,

Re: SuggestBox and HasBlurHandlers

2013-11-01 Thread Norm Deane
Adding a FocusHandler to the TextBox isn't quite what I need. The TextBox will blur when the user arrows down into the suggestion display. When this occurs they really haven't left the SuggestBox yet as they're still navigating through the suggestions. I'd be more interested in a blur event