Re: ClientBundle images missing in IE8

2011-02-16 Thread PhilBeaudoin
I've had ClientBundle bugs specifically on IE with images larger than 32kb. If this is your problem you may want to star that issue: http://code.google.com/p/google-web-toolkit/issues/detail?id=5114 It also proposes a couple of workaround. In my case, I have reverted to using image URLs in

Re: ClientBundle images missing in IE8

2011-02-16 Thread Thomas Broyer
Note that using image URLs does not rule out using ClientBundle: just add the following to your gwt.xml: set-property name=ClientBundle.enableInlining value=false when-property-is name=user.agent value=ie8 / /set-property This will use, for IE8, the same code as for IE6/7. -- You

Re: ClientBundle images missing in IE8

2011-02-16 Thread socratesJ
Thanks guys! I starred the issue on google code, but disabling inlining for ie8 appears to fix the problem. On Feb 16, 9:57 am, Thomas Broyer t.bro...@gmail.com wrote: Note that using image URLs does not rule out using ClientBundle: just add the following to your gwt.xml:   set-property

ClientBundle images missing in IE8

2011-02-15 Thread socratesJ
Two of the images in a ClientBundle I'm using don't show up at all in IE8, but they show up fine in Firefox. Other images from this bundle work in IE8, so I'm not sure what the problem is. I've also discovered that if I replace the problematic images with images of the same size and same

Re: ClientBundle images missing in IE8

2011-02-15 Thread socratesJ
I've determined that this problem only occurs if IE8 is in standards mode; that is, if I use a doctype such as !DOCTYPE HTML PUBLIC -// W3C//DTD HTML 4.01//EN as opposed to not specifying a doctype (which puts the browser in quirks mode). However, I need to use standards mode, so I'd still like