Re: Error with GWT 2.4

2012-05-29 Thread skippy
Thanks for the tip.  ChromeFrame was not installed.  This was a brand
new build of a laptop.
However, I found a registry setting in internet settings/user agent/
post platform/chromeframe/15.0.874.121.

the full path of the key is:

HKey_local_Machine/Software/microsoft/Windows/current version/internet
settings/user agent/post Platform/chromeframe.

Can we maybe get an error message indicating this situation?

Thanks again for your help

On May 25, 7:47 am, Thomas Broyer t.bro...@gmail.com wrote:
 On Thursday, May 24, 2012 8:57:30 PM UTC+2, skippy wrote:

  IE8, Window 7, not chrome plug-in.

 Are you sure Chrome Frame is not installed, but disabled? DOMImplStandard
 should not be used in IE.
 Seehttp://code.google.com/p/google-web-toolkit/issues/detail?id=6665

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Error with GWT 2.4

2012-05-25 Thread Thomas Broyer


On Thursday, May 24, 2012 8:57:30 PM UTC+2, skippy wrote:

 IE8, Window 7, not chrome plug-in. 


Are you sure Chrome Frame is not installed, but disabled? DOMImplStandard 
should not be used in IE.
See http://code.google.com/p/google-web-toolkit/issues/detail?id=6665


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/xHiXcLtP6lAJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Error with GWT 2.4

2012-05-24 Thread skippy
IE8, Window 7, not chrome plug-in.

$wnd.addEventListener($intern_965,
com_google_gwt_user_client_impl_DOMImplStandard_dispatchCapturedMouseEvent,
true);

the error is:

Object doesn't support this property of method Char:3.

This is in a .cache.html file.

Its also not happening to all IE8 users.

I had the same problem when I have the chrome plug-in installed, but
disabled.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Error with GWT 2.4

2012-05-24 Thread Joseph Lust
Skippy,

If you don't mind my asking, why are you using JSNI here to apply the 
listener rather than the DOM.sinkEvents() and DOM.setEventListener? Doing 
so is highly advised against in the documentation due to the high 
likelihood of memory leaks. It also mean's you're not getting permutation 
specific event handler implementations, which can lead to the famous 
Object doesn't support this property of method IE exception.


Sincerely,
Joseph

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/7iTu4Nzs3t0J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.