Re: IE10 support in Gwt

2013-09-04 Thread Patrick Tucker
Looks like your hover should be on the a element? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post

Re: IE10 support in Gwt

2013-09-03 Thread Walter Hutchinson
I am using hover in my celltree resources: .cellTreeTopItemImageValue { background-color: #ff; } .cellTreeTopItemImageValue:hover { background-color: #EA; } .cellTreeTopItemImageValue a { color: #00; text-decoration: none; } .cellTreeTopItemImageValue:hover a{

Re: IE10 support in Gwt

2013-09-01 Thread Andrei
RE: I ran into an issue with GWT cellTables and cellTrees using IE 10. When hovering over a row we used hovering styling for that row which worked fine. Why don't you use CSS for styling (like tr:hover) instead of relying on widgets firing events? IE10 handles them just like other browsers. --

Re: IE10 support in Gwt

2013-08-31 Thread Walter Hutchinson
Not sure if this is the place to add this but just wanted to pass on my finding related to IE10 browser support. I ran into an issue with GWT cellTables and cellTrees using IE 10. When hovering over a row we used hovering styling for that row which worked fine. However, if we stayed

Re: IE10 support in Gwt

2013-08-31 Thread Thomas Broyer
IIRC, IE10 should use the ie9 permutation because of document.documentMode = 9, unless you're opting in to quirks mode, in which case all IEs will behave as IE 5.5 and will use the ie6 permutation. So, first thing is to make sure you're in standards mode. On Saturday, August 31, 2013 4:04:13 PM

Re: IE10 support in Gwt

2013-04-26 Thread Colin Alworth
In most cases that is true, but CssResource is an interesting exception. The fallback rules work by looking to see if there is no implementation for a particular value, and if not, looking to see if there *is* an implementation for some other value. In the case of ClientBundle and

Re: IE10 support in Gwt

2013-04-22 Thread Honza Rames
It does but out of curiosity, if I add IE10 permutation/browser detection to UserAgent.gwt.xml to which value should I set the property-fallback? I mean is property fallback-recursive (I would assume it is) so setting it to IE9 should work? In case IE9 rule isn't specified it will recursively

Re: IE10 support in Gwt

2013-04-17 Thread Patrick Tucker
There are a couple module config files that need to be updated, and at least 1 java file. DOM.gwt.xml UserAgent.gwt.xml UserAgentPropertyGenerator.java I also would recommend looking at DOMImplIE9.java and any parent classes to see what needs to be modified. I must be missing something

Re: IE10 support in Gwt

2013-04-16 Thread Mariusz Magdziarz
When you add support for IE10?? W dniu wtorek, 15 stycznia 2013 02:25:44 UTC+1 użytkownik Thomas Broyer napisał: On Monday, January 14, 2013 9:43:48 PM UTC+1, Erik Sapir wrote: Hello, Are there any plans to support compilation to IE10 in GWT? Yes. If there are such plans, when

Re: IE10 support in Gwt

2013-04-16 Thread Thomas Broyer
On Tuesday, April 16, 2013 2:07:34 PM UTC+2, Mariusz Magdziarz wrote: When you add support for IE10?? AFAIK, IE10 works OK with the ie9 permutation. Vaadin has started working on bringing MSPointerEvents to support touch-enabled (and touch-only) devices. -- You received this message

Re: IE10 support in Gwt

2013-02-11 Thread Aladdin
We managed to run GWT on Windows 8 Phone with almost no efforts other than some CSS3 changes. For the desktop (Metro Style App) it was a bit tricky as the GWT was breaking down at Parsing XML using IE6 parser implementation (using ActiveX), we finally managed to fix this by forcing the loaded

Re: IE10 support in Gwt

2013-01-18 Thread colin
I have a Windows 8 and IE 10, and I can develop GWT apps with no problem, except that don't use JDK 1.7. On Wednesday, January 16, 2013 11:34:10 AM UTC-5, Erik Sapir wrote: This will not work for me - i use objects that are not supported by IE earlier than 10 On Wednesday, January 16, 2013

Re: IE10 support in Gwt

2013-01-16 Thread Ed
In the meantime, just force IE10 to render it as IEXX, like IE9. Do this by including the following in your web page: meta http-equiv=X-UA-Compatible content=IE=7,8,9 BTW: it's always good to (always) put this in your website, to ensure unpredictable issues when IE comes out with a new

Re: IE10 support in Gwt

2013-01-16 Thread Erik Sapir
This will not work for me - i use objects that are not supported by IE earlier than 10 On Wednesday, January 16, 2013 6:21:10 PM UTC+2, Ed wrote: In the meantime, just force IE10 to render it as IEXX, like IE9. Do this by including the following in your web page: meta

Re: IE10 support in Gwt

2013-01-15 Thread Erik Sapir
Thanks for the reply. Could you tell me what are the steps required to make it work? I might have to modify the GWT code locally to make it compile to IE10 On Tuesday, January 15, 2013 3:25:44 AM UTC+2, Thomas Broyer wrote: On Monday, January 14, 2013 9:43:48 PM UTC+1, Erik Sapir wrote:

Re: IE10 support in Gwt

2013-01-14 Thread Thomas Broyer
On Monday, January 14, 2013 9:43:48 PM UTC+1, Erik Sapir wrote: Hello, Are there any plans to support compilation to IE10 in GWT? Yes. If there are such plans, when should it happen? I'm not aware of anyone working on it (which doesn't necessarily mean nobody is working on it