iobts / gwt-google-apis

Automatically exported from code.google.com/p/gwt-google-apis
0 stars 0 forks source link

IE8 quirk mode issue with mouse event and ColumnChart #414

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Hy guys,

When I put a OnMouseOverHandler on my ColumnChart to show a tooltip, it works 
fine with any browsers, IE 6, 7, 8 in standard mode but no in ie8 quirk mode. 
And i need quirk mode ..

When i look at the generated code with the ie8 developper tools, i see that for 
each column:

<v:group style="width: 502px; height: 220px; top: 0px; left: 0px;" 
onmouseover="parent.__GCHART_getBuilder(0)._onMouseOver(3,1,1)" 
onmouseout="parent.__GCHART_getBuilder(0)._onMouseOut(3,1,1)" 
onclick="parent.__GCHART_getBuilder(0)._fireSelectValueEvent(1,1)">

if i add a ";" directly in the code at the end of each call like :

onmouseover="parent.__GCHART_getBuilder(0)._onMouseOver(3,1,1);"

, it works !

How could it be possible ? gwt Developpers can't forget a basic thing like this 
? What could i do wrong ?

thanks

Original issue reported on code.google.com by fabien.g...@gmail.com on 9 Sep 2010 at 6:00

GoogleCodeExporter commented 9 years ago
Are you compiling your GWT application in pretty mode?  If not, my guess is 
that this code comes from the ChartTools API and not from the GWT bindings.  
You might ask over on the Chart Tools' Visualization Google Group.

Original comment by zundel@google.com on 21 Sep 2010 at 4:34

GoogleCodeExporter commented 9 years ago

Original comment by zundel@google.com on 28 Oct 2011 at 4:25