Re: image bundle in uibinder

2010-12-27 Thread Matthew Hill
.logotest { 

   background-image: url("/path/image.png"); 
} 

should do it if I understand you correctly. The gwt-image property and 
@sprite is for use with ClientBundle.

-- 
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-tool...@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.



image bundle in uibinder

2010-12-27 Thread asianCoolz
 may i know is it possible to set  url in css like below
@Sprite .logotest {

   gwt-image: url("/path/image.png");
}




-- 
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-tool...@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.



image Bundle

2009-12-01 Thread muhannad nasser
hi all;

i have created myImageBundle that extends image bundle and i add the icons i
want and everything went fine.

but when i tried to modify the bundle and change the resources on each image
and also i added a new image... it keeps building the old image with the old
icons... i have deleted all the build project. and i am using the
hosted mode to test it

does anybody know how to solve this

thanks

-- 
~~~With Regards~~~
Muhannad Dar-Nasser
~~Computer Systems Engineering~~

~~0598-534520~~

--

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-tool...@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: Clicking Anchor widget wrapping image from image bundle does nothing on IE

2009-10-02 Thread Art

Thomas,

Thank you for the info. I understood the issue. Those are the info I
searched by Google, and could not find.

As you suggested as the workaround, I used the ClickHandler way, since
I found that the secondary image from the ImageBundle was not shown
properly when I used the extracted img tag.
However, after I have read the info you provided, I thought that I
might be able to work around by covering the image from ImageBundle
with the custom transparent (image) layer, and put Anchor widget on
that transparent layer. I will give it try next time.

Regards



On Oct 2, 6:14 am, Thomas Broyer  wrote:
> On 2 oct, 13:07, Art  wrote:
>
> > Hello,
>
> > I have the image created by the image bundle like next:
> >     AbstractImagePrototype jpNationFlagImagePrototype =
> > bounceAbsorberImageBundle.jpNationFlag();
> > I wrapped that by the Anchor widget like:
> >     Anchor jpAnchor = new Anchor( jpNationFlagImagePrototype.getHTML
> > (), true, hrefStr + "locale=ja_JP");
>
> > In the hosted mode or on IE7 (web mode), clicking on that Anchor
> > widget does nothing.
>
> Seehttp://code.google.com/p/google-web-toolkit/issues/detail?id=3080
> It's been reported nearly a year ago, but unfortunately it's hard to
> fix. The proposed fix is to completely rework ImageBundle (and the
> @sprite equivalent in 
> CssResource):http://code.google.com/p/google-web-toolkit/issues/detail?id=3588
> (the actual underlying issue is that in IE, the click event is "eaten"
> by the image and doesn't propagate up to the 
> anchor:http://code.google.com/p/google-web-toolkit/issues/detail?id=3951)
>
> The workaround is to use an Image with a ClickHandler and
> Window.Location.assign(...), or to not use an ImageBundle (use an
> image on its own)
>
>
>
> > On FF 3.5 (web mode), clicking on that Anchor widget works as
> > expected: forwarding to the URL specified as the part of hrefStr +
> > "locale=ja_JP" above.
>
> > I see the differences in the permutation results for IE and FF. For
> > IE, img HTML tag has been wrapped by clipper tag like:
> >      > border='0'>
>
> > When I intentionally extracted the img HTML tag and added the
> > extracted img HTML tag to the Anchor widget like below, the problem
> > went away: clicking on the Anchor widget worked to forward to the
> > intended URL as expected in the hosted mode or on IE7 (web mode).
> >     Element imgElement = jpNationFlagImagePrototype.createElement
> > ().getElementsByTagName( "img").getItem( 0);
> >     Anchor jpAnchor = new Anchor();
> >     jpAnchor.getElement().appendChild( imgElement);
> >     jpAnchor.setHref( hrefStr + "locale=ja_JP");
>
> > I like to know if there will be any draw back for removing clipper tag
> > by the above way, in order to clicking on Anchor widget works on IE.
>
> Well, AFAICT, it'll only display as expected if your image is in the
> upper left corner of the generated bundle.
--~--~-~--~~~---~--~~
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: Clicking Anchor widget wrapping image from image bundle does nothing on IE

2009-10-02 Thread Thomas Broyer



On 2 oct, 13:07, Art  wrote:
> Hello,
>
> I have the image created by the image bundle like next:
>     AbstractImagePrototype jpNationFlagImagePrototype =
> bounceAbsorberImageBundle.jpNationFlag();
> I wrapped that by the Anchor widget like:
>     Anchor jpAnchor = new Anchor( jpNationFlagImagePrototype.getHTML
> (), true, hrefStr + "locale=ja_JP");
>
> In the hosted mode or on IE7 (web mode), clicking on that Anchor
> widget does nothing.

See http://code.google.com/p/google-web-toolkit/issues/detail?id=3080
It's been reported nearly a year ago, but unfortunately it's hard to
fix. The proposed fix is to completely rework ImageBundle (and the
@sprite equivalent in CssResource):
http://code.google.com/p/google-web-toolkit/issues/detail?id=3588
(the actual underlying issue is that in IE, the click event is "eaten"
by the image and doesn't propagate up to the anchor:
http://code.google.com/p/google-web-toolkit/issues/detail?id=3951 )

The workaround is to use an Image with a ClickHandler and
Window.Location.assign(...), or to not use an ImageBundle (use an
image on its own)

> On FF 3.5 (web mode), clicking on that Anchor widget works as
> expected: forwarding to the URL specified as the part of hrefStr +
> "locale=ja_JP" above.
>
> I see the differences in the permutation results for IE and FF. For
> IE, img HTML tag has been wrapped by clipper tag like:
>      border='0'>
>
> When I intentionally extracted the img HTML tag and added the
> extracted img HTML tag to the Anchor widget like below, the problem
> went away: clicking on the Anchor widget worked to forward to the
> intended URL as expected in the hosted mode or on IE7 (web mode).
>     Element imgElement = jpNationFlagImagePrototype.createElement
> ().getElementsByTagName( "img").getItem( 0);
>     Anchor jpAnchor = new Anchor();
>     jpAnchor.getElement().appendChild( imgElement);
>     jpAnchor.setHref( hrefStr + "locale=ja_JP");
>
> I like to know if there will be any draw back for removing clipper tag
> by the above way, in order to clicking on Anchor widget works on IE.

Well, AFAICT, it'll only display as expected if your image is in the
upper left corner of the generated bundle.

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Clicking Anchor widget wrapping image from image bundle does nothing on IE

2009-10-02 Thread Art

Hello,

I have the image created by the image bundle like next:
AbstractImagePrototype jpNationFlagImagePrototype =
bounceAbsorberImageBundle.jpNationFlag();
I wrapped that by the Anchor widget like:
Anchor jpAnchor = new Anchor( jpNationFlagImagePrototype.getHTML
(), true, hrefStr + "locale=ja_JP");

In the hosted mode or on IE7 (web mode), clicking on that Anchor
widget does nothing.
On FF 3.5 (web mode), clicking on that Anchor widget works as
expected: forwarding to the URL specified as the part of hrefStr +
"locale=ja_JP" above.

I see the differences in the permutation results for IE and FF. For
IE, img HTML tag has been wrapped by clipper tag like:


When I intentionally extracted the img HTML tag and added the
extracted img HTML tag to the Anchor widget like below, the problem
went away: clicking on the Anchor widget worked to forward to the
intended URL as expected in the hosted mode or on IE7 (web mode).
Element imgElement = jpNationFlagImagePrototype.createElement
().getElementsByTagName( "img").getItem( 0);
Anchor jpAnchor = new Anchor();
jpAnchor.getElement().appendChild( imgElement);
jpAnchor.setHref( hrefStr + "locale=ja_JP");

I like to know if there will be any draw back for removing clipper tag
by the above way, in order to clicking on Anchor widget works on IE.

My environments are:
GWT 1.7.0
eclipse.buildId=I20090611-1540
java.version=1.6.0_16
java.vendor=Sun Microsystems Inc.
BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
Framework arguments:  -product org.eclipse.epp.package.jee.product

Regards
--~--~-~--~~~---~--~~
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: MULTIPLE RELOAD IMAGE BUNDLE

2009-09-08 Thread drenda

Ok,
very good. I've posted a issue on gwt.

I hope that it will be analized very soon.

Thanks

Best Regards

Daniele

On 8 Set, 15:35, ThomasWrobel  wrote:
> Your right...this does seem a problem with gwt on Firefox 3.5
>
> A huge amount of duplicate loading going on, not just with that bundle
> but alsohttp://gwt.google.com/samples/Showcase/showcase/clear.cache.gif
> andhttp://gwt.google.com/samples/Showcase/showcase/10A6FD6A526DA51ED7300...
>
> On Sep 8, 3:28 pm, drenda  wrote:
>
> > Hi Thomas,
> > the problem is visible also in the sample application of 
> > gwt:http://gwt.google.com/samples/Showcase/Showcase.html. If your clear
> > your browser's
> > cache and then reload the page it's load about 9MB of images in 179
> > requests. Infact
> > you can notice that the image 
> > bundlehttp://gwt.google.com/samples/Showcase/showcase/71072870DD13CCD2FCDAA...
> > is load more and more time.
>
> > Any ideas?
>
> > Thanks
>
> > Best regards
>
> > On 8 Set, 14:16, ThomasWrobel  wrote:
>
> > > I think you will have to upload it somewhere or post code for people
> > > to help on this issue.
>
> > > On Sep 8, 11:10 am, drenda  wrote:
>
> > > > Any idea?
>
> > > > Thanks
>
> > > > On 7 Set, 21:24, drenda  wrote:
>
> > > > > Hi,I forgot to say that I've this problem only with Firefox 3.5.2.
> > > > > With other browser you can't see the reloading of the images, instead
> > > > > with Firefox you can cleary see the reloading of all images!!
> > > > > Maybe a bug?
>
> > > > > Thanks
>
> > > > > On 7 Set, 19:22, bond  wrote:
>
> > > > > > Hi,I've a big problem with image bundle. I make a small table with
> > > > > > paging that display some text and some image. When I click "next
> > > > > > button" the image bundle is reload more and more time in the browser
> > > > > > (with firebug I see a 
> > > > > > GEThttp://localhost:8084/Main/B944D2399463F2D5C1293B5263DF3E75.cache.html).
> > > > > > I can't see the problem!!
>
> > > > > > Thanks for your help!
>
> > > > > > Best regards
>
>
--~--~-~--~~~---~--~~
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: MULTIPLE RELOAD IMAGE BUNDLE

2009-09-08 Thread ThomasWrobel

Your right...this does seem a problem with gwt on Firefox 3.5

A huge amount of duplicate loading going on, not just with that bundle
but also
http://gwt.google.com/samples/Showcase/showcase/clear.cache.gif
and
http://gwt.google.com/samples/Showcase/showcase/10A6FD6A526DA51ED7300D58E497C99C.cache.png


On Sep 8, 3:28 pm, drenda  wrote:
> Hi Thomas,
> the problem is visible also in the sample application of 
> gwt:http://gwt.google.com/samples/Showcase/Showcase.html. If your clear
> your browser's
> cache and then reload the page it's load about 9MB of images in 179
> requests. Infact
> you can notice that the image 
> bundlehttp://gwt.google.com/samples/Showcase/showcase/71072870DD13CCD2FCDAA...
> is load more and more time.
>
> Any ideas?
>
> Thanks
>
> Best regards
>
> On 8 Set, 14:16, ThomasWrobel  wrote:
>
>
>
> > I think you will have to upload it somewhere or post code for people
> > to help on this issue.
>
> > On Sep 8, 11:10 am, drenda  wrote:
>
> > > Any idea?
>
> > > Thanks
>
> > > On 7 Set, 21:24, drenda  wrote:
>
> > > > Hi,I forgot to say that I've this problem only with Firefox 3.5.2.
> > > > With other browser you can't see the reloading of the images, instead
> > > > with Firefox you can cleary see the reloading of all images!!
> > > > Maybe a bug?
>
> > > > Thanks
>
> > > > On 7 Set, 19:22, bond  wrote:
>
> > > > > Hi,I've a big problem with image bundle. I make a small table with
> > > > > paging that display some text and some image. When I click "next
> > > > > button" the image bundle is reload more and more time in the browser
> > > > > (with firebug I see a 
> > > > > GEThttp://localhost:8084/Main/B944D2399463F2D5C1293B5263DF3E75.cache.html).
> > > > > I can't see the problem!!
>
> > > > > Thanks for your help!
>
> > > > > Best regards
--~--~-~--~~~---~--~~
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: MULTIPLE RELOAD IMAGE BUNDLE

2009-09-08 Thread drenda

Hi Thomas,
the problem is visible also in the sample application of gwt:
http://gwt.google.com/samples/Showcase/Showcase.html. If your clear
your browser's
cache and then reload the page it's load about 9MB of images in 179
requests. Infact
you can notice that the image bundle
http://gwt.google.com/samples/Showcase/showcase/71072870DD13CCD2FCDAA9AF1F2C7F02.cache.png
is load more and more time.

Any ideas?

Thanks

Best regards


On 8 Set, 14:16, ThomasWrobel  wrote:
> I think you will have to upload it somewhere or post code for people
> to help on this issue.
>
> On Sep 8, 11:10 am, drenda  wrote:
>
> > Any idea?
>
> > Thanks
>
> > On 7 Set, 21:24, drenda  wrote:
>
> > > Hi,I forgot to say that I've this problem only with Firefox 3.5.2.
> > > With other browser you can't see the reloading of the images, instead
> > > with Firefox you can cleary see the reloading of all images!!
> > > Maybe a bug?
>
> > > Thanks
>
> > > On 7 Set, 19:22, bond  wrote:
>
> > > > Hi,I've a big problem with image bundle. I make a small table with
> > > > paging that display some text and some image. When I click "next
> > > > button" the image bundle is reload more and more time in the browser
> > > > (with firebug I see a 
> > > > GEThttp://localhost:8084/Main/B944D2399463F2D5C1293B5263DF3E75.cache.html).
> > > > I can't see the problem!!
>
> > > > Thanks for your help!
>
> > > > Best regards
>
>
--~--~-~--~~~---~--~~
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: MULTIPLE RELOAD IMAGE BUNDLE

2009-09-08 Thread ThomasWrobel

I think you will have to upload it somewhere or post code for people
to help on this issue.

On Sep 8, 11:10 am, drenda  wrote:
> Any idea?
>
> Thanks
>
> On 7 Set, 21:24, drenda  wrote:
>
>
>
> > Hi,I forgot to say that I've this problem only with Firefox 3.5.2.
> > With other browser you can't see the reloading of the images, instead
> > with Firefox you can cleary see the reloading of all images!!
> > Maybe a bug?
>
> > Thanks
>
> > On 7 Set, 19:22, bond  wrote:
>
> > > Hi,I've a big problem with image bundle. I make a small table with
> > > paging that display some text and some image. When I click "next
> > > button" the image bundle is reload more and more time in the browser
> > > (with firebug I see a 
> > > GEThttp://localhost:8084/Main/B944D2399463F2D5C1293B5263DF3E75.cache.html).
> > > I can't see the problem!!
>
> > > Thanks for your help!
>
> > > Best regards
--~--~-~--~~~---~--~~
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: MULTIPLE RELOAD IMAGE BUNDLE

2009-09-08 Thread drenda

Any idea?

Thanks

On 7 Set, 21:24, drenda  wrote:
> Hi,I forgot to say that I've this problem only with Firefox 3.5.2.
> With other browser you can't see the reloading of the images, instead
> with Firefox you can cleary see the reloading of all images!!
> Maybe a bug?
>
> Thanks
>
> On 7 Set, 19:22, bond  wrote:
>
> > Hi,I've a big problem with image bundle. I make a small table with
> > paging that display some text and some image. When I click "next
> > button" the image bundle is reload more and more time in the browser
> > (with firebug I see a 
> > GEThttp://localhost:8084/Main/B944D2399463F2D5C1293B5263DF3E75.cache.html).
> > I can't see the problem!!
>
> > Thanks for your help!
>
> > Best regards
>
>
--~--~-~--~~~---~--~~
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: MULTIPLE RELOAD IMAGE BUNDLE

2009-09-07 Thread drenda

Hi,I forgot to say that I've this problem only with Firefox 3.5.2.
With other browser you can't see the reloading of the images, instead
with Firefox you can cleary see the reloading of all images!!
Maybe a bug?

Thanks

On 7 Set, 19:22, bond  wrote:
> Hi,I've a big problem with image bundle. I make a small table with
> paging that display some text and some image. When I click "next
> button" the image bundle is reload more and more time in the browser
> (with firebug I see a 
> GEThttp://localhost:8084/Main/B944D2399463F2D5C1293B5263DF3E75.cache.html).
> I can't see the problem!!
>
> Thanks for your help!
>
> Best regards
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Image Bundle

2009-09-04 Thread venki

Hi all,

I want customizable image bundle. First let me explain my question.

--> We have image bundle in gwt right.. what i want is..

In my project. There are are so many members registered. In user
preferences i am putting the option to have his/her own images to be
displayed after the user logged in. So let us suppose there are 2
users

user 1 selects the following pictures(in user preferences)
a1.jpeg, b1.jpeg ...etc(more than 10 icons)

user 2 selects the following pictures
a2.jpeg,b2.jpeg...etc(more than 10 icons)

So my requirement is to display their corresponding images after they
logged-in using image bundle in GWT. So how can i tell to GWT module
to use specific image bundle. I don't whether we can achieve it or
not. Let me know your ideas of approaching.

I hope all of you understand my requirement.
--~--~-~--~~~---~--~~
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: Image Bundle not working in IE

2009-07-22 Thread Thomas Broyer



On 22 juil, 16:57, Sean  wrote:
> So, I seemed to have two problems, one my Server is not logging
> errors, I should have seen that 403 error, but didn't. But I was able
> on your suggestion mess around with IE's Developer's tools. I figured
> out how to use the pointer to figure out the call made and I figured
> out the problem. The alpha loader doesn't do a load with say,
> "celticlock/imagebundlestuff.cache.png", it loads 
> "http://www.celticlock.com/celticlock/imagebundlestuff.cache.png";. So what
> happens is it looked like someone was hot image linking it.

The URL isn't in cause here, it's the use of AlphaImageLoader which
causes this, because it is a ActiveX that runs "outside" the HTML
page, it doesn't have access (or just does not use, which is more
probable) to the HTML URL to use it in a Referer HTTP header.

> So I
> checked the setting and image linking was enabled, I disabled it and
> *BAM* it worked great!

Great! Glad you solved the issue that easily!

--~--~-~--~~~---~--~~
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: Image Bundle not working in IE

2009-07-22 Thread Sean

So, I seemed to have two problems, one my Server is not logging
errors, I should have seen that 403 error, but didn't. But I was able
on your suggestion mess around with IE's Developer's tools. I figured
out how to use the pointer to figure out the call made and I figured
out the problem. The alpha loader doesn't do a load with say,
"celticlock/imagebundlestuff.cache.png", it loads "http://
www.celticlock.com/celticlock/imagebundlestuff.cache.png". So what
happens is it looked like someone was hot image linking it. So I
checked the setting and image linking was enabled, I disabled it and
*BAM* it worked great!

Thank you everyone for all your help. I learned a ton!

On Jul 22, 3:59 am, Thomas Broyer  wrote:
> On 22 juil, 00:47, Sean  wrote:
>
> > Yeah, that'd be great. I don't mean to link whore 
> > but:http://www.celticlock.com/
>
> > All the images on the left show up in FireFox and Chrome, but not in
> > IE. Nor do the +',s and -'s of the tree under GWT Playground, Gallery
> > or NFL. If anyone has any insight that'd be great. Thanks again for
> > all your help!
>
> Looking at it through Fiddler2 [1] with Chrome 3 (dev) and IE8 shows
> that the server sends the images to Chrome but returns a "403
> Forbidden" response to IE (saying that "193.251.30.44 is forbidden
> from viewing this website!").
>
> Now, check with your hosting provider to understand why... (is IE
> redirected through an internal proxy?)
--~--~-~--~~~---~--~~
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: Image Bundle not working in IE

2009-07-22 Thread Thomas Broyer



On 22 juil, 00:47, Sean  wrote:
> Yeah, that'd be great. I don't mean to link whore 
> but:http://www.celticlock.com/
>
> All the images on the left show up in FireFox and Chrome, but not in
> IE. Nor do the +',s and -'s of the tree under GWT Playground, Gallery
> or NFL. If anyone has any insight that'd be great. Thanks again for
> all your help!

Looking at it through Fiddler2 [1] with Chrome 3 (dev) and IE8 shows
that the server sends the images to Chrome but returns a "403
Forbidden" response to IE (saying that "193.251.30.44 is forbidden
from viewing this website!").

Now, check with your hosting provider to understand why... (is IE
redirected through an internal proxy?)
--~--~-~--~~~---~--~~
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: Image Bundle not working in IE

2009-07-21 Thread Sean

Yeah, that'd be great. I don't mean to link whore but:
http://www.celticlock.com/

All the images on the left show up in FireFox and Chrome, but not in
IE. Nor do the +',s and -'s of the tree under GWT Playground, Gallery
or NFL. If anyone has any insight that'd be great. Thanks again for
all your help!

(Sorry if this double posted)

On Jul 21, 5:37 pm, Thomas Broyer  wrote:
> On 21 juil, 22:29, Sean  wrote:
>
> > Crap. So I uploaded the sample Tree app that did NOT work with my
> > server to the Google Appengine and it worked fine. Dammit. Why would a
> > server not serve the imagebundles to IE correctly?
>
> Any pointer so that we could look at it and try to understand what's
> wrong?
--~--~-~--~~~---~--~~
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: Image Bundle not working in IE

2009-07-21 Thread Thomas Broyer



On 21 juil, 22:29, Sean  wrote:
> Crap. So I uploaded the sample Tree app that did NOT work with my
> server to the Google Appengine and it worked fine. Dammit. Why would a
> server not serve the imagebundles to IE correctly?

Any pointer so that we could look at it and try to understand what's
wrong?
--~--~-~--~~~---~--~~
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: Image Bundle not working in IE

2009-07-21 Thread Sean

Crap. So I uploaded the sample Tree app that did NOT work with my
server to the Google Appengine and it worked fine. Dammit. Why would a
server not serve the imagebundles to IE correctly?

On Jul 21, 4:19 pm, Sean  wrote:
> As a quick Test, I made a GWT App that was just a Tree with one item
> added to the RootPanel. No +/- in IE. Atleast I know it's not
> something in my huge app.
>
>  I also set my IE settings for intranet pages to Medium_high which the
> web setting is, and I still see everything fine on the local machine.
>
> Since I see everything fine in IE on my local machine as well as
> Google's Showcase website, I can only think it's something with my
> server. Now...how the hell to figure that out? That I have no
> clue. Nothing off in the logs, the java script should work just the
> same everywhere. So confusing. It's Mocha hosting, so it's a reputable
> place. I can't understand how the .js being read from there would do
> something different then on my local machine.
>
> On Jul 21, 3:19 pm, Sean  wrote:
>
> > If I understand you correctly, what I did was go into Run
> > Configurations and turned off Run built-in server. Then use the
> > browser that comes up to goto my deployed site on my external server?
>
> > Well, I tried that and I got:
> > [ERROR] Unable to find 'celticlock.gwt.xml' on your classpath; could
> > be a typo, or maybe you forgot to include a classpath entry for
> > source?
>
> > But, then I tried to goto the GWT Showcase and I got the same thing:
> > [ERROR] Unable to find 'showcase.gwt.xml' on your classpath; could be
> > a typo, or maybe you forgot to include a classpath entry for source?
>
> > (Which works in IE for me btw).
>
> > So, I think I may be misunderstanding you.
>
> > On Jul 20, 11:40 am, Rajeev Dayal  wrote:
>
> > > It is odd that it works in hosted mode, but not in web mode - because the 
> > > IE
> > > settings (security even) should be the same for IE6 hosted mode, and the
> > > normal IE6 browser.
> > > Actually, here is one thing you can test - try hitting your deployed app
> > > with the hosted browser. Launch hosted mode with the -noserver option, 
> > > which
> > > will prevent GWT's default server from starting up. That way, we can
> > > determine if this is an issue with the hosted browser, or something wonky
> > > with your deployment.
>
> > > On Mon, Jul 20, 2009 at 11:59 AM, Sean  wrote:
>
> > > > The fact that it works when in Hosted mode in IE, but not when it's
> > > > deployed is making me think it is a security thing. I'm just not sure
> > > > the work around. I've tried various security settings, but can't get
> > > > it to show up. THe path looks right to the clear cache, not sure waht
> > > > else could be messing this up. Cause it looks like it's putting the
> > > > correct image sizes (Things next to it are pushed over correctly).
>
> > > > Very peculiar. I've even noticed that Tree +/- are missing as well as
> > > > disclosure panel's arrows. So it's not just my image bundles, but
> > > > GWT's are having a hard time. Very confusing. I'll keep playing with
> > > > it, see if I can figure something out.
>
> > > > On Jul 18, 11:25 am, Thomas Broyer  wrote:
> > > > > On 18 juil, 00:34, Sean  wrote:
>
> > > > > > Sadly, even with clean war file, IE still is having problems. I 
> > > > > > wonder
> > > > > > if it's some security level thing? I'm not sure. IE won't allow me 
> > > > > > to
> > > > > > turn down my settings to try it. Wont let me go lower then Medium 
> > > > > > for
> > > > > > non-intranet sites. I don't know why an ImageBundle would be
> > > > > > considered non-secure, but at this point I'm just confused.
>
> > > > > It could be two things:
> > > > >  - a bad path to the bundle (IE is known to have some bugs re.
> > > > > resolving relative paths, though it shouldn't affect ImageBundles; but
> > > > > maybe if you're "playing" with the paths when deploying your app)
> > > > >  - ImageBundles use an ActiveX (filter: AlphaImageLoader), so it might
> > > > > really be a security thing.
--~--~-~--~~~---~--~~
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: Image Bundle not working in IE

2009-07-21 Thread Sean

As a quick Test, I made a GWT App that was just a Tree with one item
added to the RootPanel. No +/- in IE. Atleast I know it's not
something in my huge app.

 I also set my IE settings for intranet pages to Medium_high which the
web setting is, and I still see everything fine on the local machine.

Since I see everything fine in IE on my local machine as well as
Google's Showcase website, I can only think it's something with my
server. Now...how the hell to figure that out? That I have no
clue. Nothing off in the logs, the java script should work just the
same everywhere. So confusing. It's Mocha hosting, so it's a reputable
place. I can't understand how the .js being read from there would do
something different then on my local machine.

On Jul 21, 3:19 pm, Sean  wrote:
> If I understand you correctly, what I did was go into Run
> Configurations and turned off Run built-in server. Then use the
> browser that comes up to goto my deployed site on my external server?
>
> Well, I tried that and I got:
> [ERROR] Unable to find 'celticlock.gwt.xml' on your classpath; could
> be a typo, or maybe you forgot to include a classpath entry for
> source?
>
> But, then I tried to goto the GWT Showcase and I got the same thing:
> [ERROR] Unable to find 'showcase.gwt.xml' on your classpath; could be
> a typo, or maybe you forgot to include a classpath entry for source?
>
> (Which works in IE for me btw).
>
> So, I think I may be misunderstanding you.
>
> On Jul 20, 11:40 am, Rajeev Dayal  wrote:
>
> > It is odd that it works in hosted mode, but not in web mode - because the IE
> > settings (security even) should be the same for IE6 hosted mode, and the
> > normal IE6 browser.
> > Actually, here is one thing you can test - try hitting your deployed app
> > with the hosted browser. Launch hosted mode with the -noserver option, which
> > will prevent GWT's default server from starting up. That way, we can
> > determine if this is an issue with the hosted browser, or something wonky
> > with your deployment.
>
> > On Mon, Jul 20, 2009 at 11:59 AM, Sean  wrote:
>
> > > The fact that it works when in Hosted mode in IE, but not when it's
> > > deployed is making me think it is a security thing. I'm just not sure
> > > the work around. I've tried various security settings, but can't get
> > > it to show up. THe path looks right to the clear cache, not sure waht
> > > else could be messing this up. Cause it looks like it's putting the
> > > correct image sizes (Things next to it are pushed over correctly).
>
> > > Very peculiar. I've even noticed that Tree +/- are missing as well as
> > > disclosure panel's arrows. So it's not just my image bundles, but
> > > GWT's are having a hard time. Very confusing. I'll keep playing with
> > > it, see if I can figure something out.
>
> > > On Jul 18, 11:25 am, Thomas Broyer  wrote:
> > > > On 18 juil, 00:34, Sean  wrote:
>
> > > > > Sadly, even with clean war file, IE still is having problems. I wonder
> > > > > if it's some security level thing? I'm not sure. IE won't allow me to
> > > > > turn down my settings to try it. Wont let me go lower then Medium for
> > > > > non-intranet sites. I don't know why an ImageBundle would be
> > > > > considered non-secure, but at this point I'm just confused.
>
> > > > It could be two things:
> > > >  - a bad path to the bundle (IE is known to have some bugs re.
> > > > resolving relative paths, though it shouldn't affect ImageBundles; but
> > > > maybe if you're "playing" with the paths when deploying your app)
> > > >  - ImageBundles use an ActiveX (filter: AlphaImageLoader), so it might
> > > > really be a security thing.
--~--~-~--~~~---~--~~
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: Image Bundle not working in IE

2009-07-21 Thread Sean

If I understand you correctly, what I did was go into Run
Configurations and turned off Run built-in server. Then use the
browser that comes up to goto my deployed site on my external server?

Well, I tried that and I got:
[ERROR] Unable to find 'celticlock.gwt.xml' on your classpath; could
be a typo, or maybe you forgot to include a classpath entry for
source?

But, then I tried to goto the GWT Showcase and I got the same thing:
[ERROR] Unable to find 'showcase.gwt.xml' on your classpath; could be
a typo, or maybe you forgot to include a classpath entry for source?

(Which works in IE for me btw).

So, I think I may be misunderstanding you.

On Jul 20, 11:40 am, Rajeev Dayal  wrote:
> It is odd that it works in hosted mode, but not in web mode - because the IE
> settings (security even) should be the same for IE6 hosted mode, and the
> normal IE6 browser.
> Actually, here is one thing you can test - try hitting your deployed app
> with the hosted browser. Launch hosted mode with the -noserver option, which
> will prevent GWT's default server from starting up. That way, we can
> determine if this is an issue with the hosted browser, or something wonky
> with your deployment.
>
> On Mon, Jul 20, 2009 at 11:59 AM, Sean  wrote:
>
> > The fact that it works when in Hosted mode in IE, but not when it's
> > deployed is making me think it is a security thing. I'm just not sure
> > the work around. I've tried various security settings, but can't get
> > it to show up. THe path looks right to the clear cache, not sure waht
> > else could be messing this up. Cause it looks like it's putting the
> > correct image sizes (Things next to it are pushed over correctly).
>
> > Very peculiar. I've even noticed that Tree +/- are missing as well as
> > disclosure panel's arrows. So it's not just my image bundles, but
> > GWT's are having a hard time. Very confusing. I'll keep playing with
> > it, see if I can figure something out.
>
> > On Jul 18, 11:25 am, Thomas Broyer  wrote:
> > > On 18 juil, 00:34, Sean  wrote:
>
> > > > Sadly, even with clean war file, IE still is having problems. I wonder
> > > > if it's some security level thing? I'm not sure. IE won't allow me to
> > > > turn down my settings to try it. Wont let me go lower then Medium for
> > > > non-intranet sites. I don't know why an ImageBundle would be
> > > > considered non-secure, but at this point I'm just confused.
>
> > > It could be two things:
> > >  - a bad path to the bundle (IE is known to have some bugs re.
> > > resolving relative paths, though it shouldn't affect ImageBundles; but
> > > maybe if you're "playing" with the paths when deploying your app)
> > >  - ImageBundles use an ActiveX (filter: AlphaImageLoader), so it might
> > > really be a security thing.
--~--~-~--~~~---~--~~
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: Image Bundle not working in IE

2009-07-20 Thread Rajeev Dayal
It is odd that it works in hosted mode, but not in web mode - because the IE
settings (security even) should be the same for IE6 hosted mode, and the
normal IE6 browser.
Actually, here is one thing you can test - try hitting your deployed app
with the hosted browser. Launch hosted mode with the -noserver option, which
will prevent GWT's default server from starting up. That way, we can
determine if this is an issue with the hosted browser, or something wonky
with your deployment.

On Mon, Jul 20, 2009 at 11:59 AM, Sean  wrote:

>
> The fact that it works when in Hosted mode in IE, but not when it's
> deployed is making me think it is a security thing. I'm just not sure
> the work around. I've tried various security settings, but can't get
> it to show up. THe path looks right to the clear cache, not sure waht
> else could be messing this up. Cause it looks like it's putting the
> correct image sizes (Things next to it are pushed over correctly).
>
> Very peculiar. I've even noticed that Tree +/- are missing as well as
> disclosure panel's arrows. So it's not just my image bundles, but
> GWT's are having a hard time. Very confusing. I'll keep playing with
> it, see if I can figure something out.
>
> On Jul 18, 11:25 am, Thomas Broyer  wrote:
> > On 18 juil, 00:34, Sean  wrote:
> >
> > > Sadly, even with clean war file, IE still is having problems. I wonder
> > > if it's some security level thing? I'm not sure. IE won't allow me to
> > > turn down my settings to try it. Wont let me go lower then Medium for
> > > non-intranet sites. I don't know why an ImageBundle would be
> > > considered non-secure, but at this point I'm just confused.
> >
> > It could be two things:
> >  - a bad path to the bundle (IE is known to have some bugs re.
> > resolving relative paths, though it shouldn't affect ImageBundles; but
> > maybe if you're "playing" with the paths when deploying your app)
> >  - ImageBundles use an ActiveX (filter: AlphaImageLoader), so it might
> > really be a security thing.
> >
>

--~--~-~--~~~---~--~~
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: Image Bundle not working in IE

2009-07-20 Thread Sean

The fact that it works when in Hosted mode in IE, but not when it's
deployed is making me think it is a security thing. I'm just not sure
the work around. I've tried various security settings, but can't get
it to show up. THe path looks right to the clear cache, not sure waht
else could be messing this up. Cause it looks like it's putting the
correct image sizes (Things next to it are pushed over correctly).

Very peculiar. I've even noticed that Tree +/- are missing as well as
disclosure panel's arrows. So it's not just my image bundles, but
GWT's are having a hard time. Very confusing. I'll keep playing with
it, see if I can figure something out.

On Jul 18, 11:25 am, Thomas Broyer  wrote:
> On 18 juil, 00:34, Sean  wrote:
>
> > Sadly, even with clean war file, IE still is having problems. I wonder
> > if it's some security level thing? I'm not sure. IE won't allow me to
> > turn down my settings to try it. Wont let me go lower then Medium for
> > non-intranet sites. I don't know why an ImageBundle would be
> > considered non-secure, but at this point I'm just confused.
>
> It could be two things:
>  - a bad path to the bundle (IE is known to have some bugs re.
> resolving relative paths, though it shouldn't affect ImageBundles; but
> maybe if you're "playing" with the paths when deploying your app)
>  - ImageBundles use an ActiveX (filter: AlphaImageLoader), so it might
> really be a security thing.
--~--~-~--~~~---~--~~
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: Image Bundle not working in IE

2009-07-18 Thread Thomas Broyer



On 18 juil, 00:34, Sean  wrote:
> Sadly, even with clean war file, IE still is having problems. I wonder
> if it's some security level thing? I'm not sure. IE won't allow me to
> turn down my settings to try it. Wont let me go lower then Medium for
> non-intranet sites. I don't know why an ImageBundle would be
> considered non-secure, but at this point I'm just confused.

It could be two things:
 - a bad path to the bundle (IE is known to have some bugs re.
resolving relative paths, though it shouldn't affect ImageBundles; but
maybe if you're "playing" with the paths when deploying your app)
 - ImageBundles use an ActiveX (filter: AlphaImageLoader), so it might
really be a security thing.


--~--~-~--~~~---~--~~
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: Image Bundle not working in IE

2009-07-17 Thread Jason Essington

I have to say, in all of the environments that I have access to my  
image bundles work fine, BUT there is one machine at a client's  
location that does not display them!

I have thus far been unable to replicate this situation, so haven't  
been able to chase it myself.

-jason

On Jul 17, 2009, at 4:34 PM, Sean wrote:

>
> Sadly, even with clean war file, IE still is having problems. I wonder
> if it's some security level thing? I'm not sure. IE won't allow me to
> turn down my settings to try it. Wont let me go lower then Medium for
> non-intranet sites. I don't know why an ImageBundle would be
> considered non-secure, but at this point I'm just confused.
>
> On Jul 17, 6:17 pm, Sean  wrote:
>> So, I am working on a Windows Vista machine, using Eclipse 3.4
>>
>> However in IE 6 (which I have at work) and IE8 none of the image
>> bundles show up. And I noticed that default Trees no longer show the
>> Plus/Minus symbols show.
>>
>> Everything works fine in hosted mode.
>>
>> Huh, now this is odd. When I hit Compile/Browse it auto brings up FF
>> and everything works. So I goto IE and I take the 
>> address:http://localhost:8080/CelticLock.htmland 
>>  paste it in there and
>> everything looks fine. That's confusing.
>>
>> H, I'm going to try to delete everything off my Server  
>> and
>> reput up the WAR. I wonder if the IE version got corrupted somehow? I
>> will let you know!
>>
>> On Jul 17, 10:46 am, David  wrote:
>>
>>> Hi,
>>
>>> This is a problem I haven't stumbled upon yet.
>>
>>> Is this in hosted mode or in web mode. In hosted mode this can  
>>> happen
>>> if you build on a machine with a different OS  and run hosted mode  
>>> on
>>> another OS. The generated filenames for the PNGs apparently are
>>> influenced by the end-of-line markers of the operating system.
>>
>>> On IE we experience problems that ImageBundles consume an enormous
>>> amount of memory (and leaks it too).
>>> There is no solutions for IE6 unless you do not need transparency.  
>>> For
>>> IE7 and IE8 you could disable the PNG hack. (Let me know if you need
>>> some info on how to do this - I posted something in the contributors
>>> newsgroup so you should be able to find it there).
>>
>>> David
>>
>>> On Fri, Jul 17, 2009 at 4:23 PM, Rajeev Dayal  
>>> wrote:
 Do the ImageBundles work in hosted mode? Or is this a problem  
 that you're
 seeing in web mode?
 What platform (OS and Browser) are you on?
>>
 On Thu, Jul 16, 2009 at 10:32 AM, Sean  wrote:
>>
> I was just wondering if the lack of response is because people use
> ImageBundles and don't know why they don't work in IE, or they use
> ImageBundles and they all work in IE for them or people just  
> don't use
> ImageBundles?
>>
> It's frustrating having something work in everything BUT IE, which
> always tends to be the black sheep so far in my GWT experience.
>>
> On Jul 14, 8:08 am, Sean  wrote:
>> I was wondering if IE still doesn't work correctly with Image  
>> Bundles.
>> I've seen several older posts (pre 1.6) where people had  
>> problems.
>>
>> I now have three ImageBundles that I use, all of them work in  
>> Firefox
>> and Chrome but not in IE. It's just a blank gif. where the image
>> should be.
>>
>> Are there any workarounds?
>> Thank you.
> >


--~--~-~--~~~---~--~~
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: Image Bundle not working in IE

2009-07-17 Thread Sean

Sadly, even with clean war file, IE still is having problems. I wonder
if it's some security level thing? I'm not sure. IE won't allow me to
turn down my settings to try it. Wont let me go lower then Medium for
non-intranet sites. I don't know why an ImageBundle would be
considered non-secure, but at this point I'm just confused.

On Jul 17, 6:17 pm, Sean  wrote:
> So, I am working on a Windows Vista machine, using Eclipse 3.4
>
> However in IE 6 (which I have at work) and IE8 none of the image
> bundles show up. And I noticed that default Trees no longer show the
> Plus/Minus symbols show.
>
> Everything works fine in hosted mode.
>
> Huh, now this is odd. When I hit Compile/Browse it auto brings up FF
> and everything works. So I goto IE and I take the 
> address:http://localhost:8080/CelticLock.htmland paste it in there and
> everything looks fine. That's confusing.
>
> H, I'm going to try to delete everything off my Server and
> reput up the WAR. I wonder if the IE version got corrupted somehow? I
> will let you know!
>
> On Jul 17, 10:46 am, David  wrote:
>
> > Hi,
>
> > This is a problem I haven't stumbled upon yet.
>
> > Is this in hosted mode or in web mode. In hosted mode this can happen
> > if you build on a machine with a different OS  and run hosted mode on
> > another OS. The generated filenames for the PNGs apparently are
> > influenced by the end-of-line markers of the operating system.
>
> > On IE we experience problems that ImageBundles consume an enormous
> > amount of memory (and leaks it too).
> > There is no solutions for IE6 unless you do not need transparency. For
> > IE7 and IE8 you could disable the PNG hack. (Let me know if you need
> > some info on how to do this - I posted something in the contributors
> > newsgroup so you should be able to find it there).
>
> > David
>
> > On Fri, Jul 17, 2009 at 4:23 PM, Rajeev Dayal wrote:
> > > Do the ImageBundles work in hosted mode? Or is this a problem that you're
> > > seeing in web mode?
> > > What platform (OS and Browser) are you on?
>
> > > On Thu, Jul 16, 2009 at 10:32 AM, Sean  wrote:
>
> > >> I was just wondering if the lack of response is because people use
> > >> ImageBundles and don't know why they don't work in IE, or they use
> > >> ImageBundles and they all work in IE for them or people just don't use
> > >> ImageBundles?
>
> > >> It's frustrating having something work in everything BUT IE, which
> > >> always tends to be the black sheep so far in my GWT experience.
>
> > >> On Jul 14, 8:08 am, Sean  wrote:
> > >> > I was wondering if IE still doesn't work correctly with Image Bundles.
> > >> > I've seen several older posts (pre 1.6) where people had problems.
>
> > >> > I now have three ImageBundles that I use, all of them work in Firefox
> > >> > and Chrome but not in IE. It's just a blank gif. where the image
> > >> > should be.
>
> > >> > Are there any workarounds?
> > >> > Thank you.
--~--~-~--~~~---~--~~
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: Image Bundle not working in IE

2009-07-17 Thread Sean

So, I am working on a Windows Vista machine, using Eclipse 3.4

However in IE 6 (which I have at work) and IE8 none of the image
bundles show up. And I noticed that default Trees no longer show the
Plus/Minus symbols show.

Everything works fine in hosted mode.

Huh, now this is odd. When I hit Compile/Browse it auto brings up FF
and everything works. So I goto IE and I take the address:
http://localhost:8080/CelticLock.html and paste it in there and
everything looks fine. That's confusing.

H, I'm going to try to delete everything off my Server and
reput up the WAR. I wonder if the IE version got corrupted somehow? I
will let you know!

On Jul 17, 10:46 am, David  wrote:
> Hi,
>
> This is a problem I haven't stumbled upon yet.
>
> Is this in hosted mode or in web mode. In hosted mode this can happen
> if you build on a machine with a different OS  and run hosted mode on
> another OS. The generated filenames for the PNGs apparently are
> influenced by the end-of-line markers of the operating system.
>
> On IE we experience problems that ImageBundles consume an enormous
> amount of memory (and leaks it too).
> There is no solutions for IE6 unless you do not need transparency. For
> IE7 and IE8 you could disable the PNG hack. (Let me know if you need
> some info on how to do this - I posted something in the contributors
> newsgroup so you should be able to find it there).
>
> David
>
> On Fri, Jul 17, 2009 at 4:23 PM, Rajeev Dayal wrote:
> > Do the ImageBundles work in hosted mode? Or is this a problem that you're
> > seeing in web mode?
> > What platform (OS and Browser) are you on?
>
> > On Thu, Jul 16, 2009 at 10:32 AM, Sean  wrote:
>
> >> I was just wondering if the lack of response is because people use
> >> ImageBundles and don't know why they don't work in IE, or they use
> >> ImageBundles and they all work in IE for them or people just don't use
> >> ImageBundles?
>
> >> It's frustrating having something work in everything BUT IE, which
> >> always tends to be the black sheep so far in my GWT experience.
>
> >> On Jul 14, 8:08 am, Sean  wrote:
> >> > I was wondering if IE still doesn't work correctly with Image Bundles.
> >> > I've seen several older posts (pre 1.6) where people had problems.
>
> >> > I now have three ImageBundles that I use, all of them work in Firefox
> >> > and Chrome but not in IE. It's just a blank gif. where the image
> >> > should be.
>
> >> > Are there any workarounds?
> >> > Thank you.
--~--~-~--~~~---~--~~
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: Image Bundle not working in IE

2009-07-17 Thread David

Hi,

This is a problem I haven't stumbled upon yet.

Is this in hosted mode or in web mode. In hosted mode this can happen
if you build on a machine with a different OS  and run hosted mode on
another OS. The generated filenames for the PNGs apparently are
influenced by the end-of-line markers of the operating system.

On IE we experience problems that ImageBundles consume an enormous
amount of memory (and leaks it too).
There is no solutions for IE6 unless you do not need transparency. For
IE7 and IE8 you could disable the PNG hack. (Let me know if you need
some info on how to do this - I posted something in the contributors
newsgroup so you should be able to find it there).


David


On Fri, Jul 17, 2009 at 4:23 PM, Rajeev Dayal wrote:
> Do the ImageBundles work in hosted mode? Or is this a problem that you're
> seeing in web mode?
> What platform (OS and Browser) are you on?
>
> On Thu, Jul 16, 2009 at 10:32 AM, Sean  wrote:
>>
>> I was just wondering if the lack of response is because people use
>> ImageBundles and don't know why they don't work in IE, or they use
>> ImageBundles and they all work in IE for them or people just don't use
>> ImageBundles?
>>
>> It's frustrating having something work in everything BUT IE, which
>> always tends to be the black sheep so far in my GWT experience.
>>
>> On Jul 14, 8:08 am, Sean  wrote:
>> > I was wondering if IE still doesn't work correctly with Image Bundles.
>> > I've seen several older posts (pre 1.6) where people had problems.
>> >
>> > I now have three ImageBundles that I use, all of them work in Firefox
>> > and Chrome but not in IE. It's just a blank gif. where the image
>> > should be.
>> >
>> > Are there any workarounds?
>> > Thank you.
>>
>
>
> >
>

--~--~-~--~~~---~--~~
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: Image Bundle not working in IE

2009-07-17 Thread Rajeev Dayal
Do the ImageBundles work in hosted mode? Or is this a problem that you're
seeing in web mode?
What platform (OS and Browser) are you on?

On Thu, Jul 16, 2009 at 10:32 AM, Sean  wrote:

>
> I was just wondering if the lack of response is because people use
> ImageBundles and don't know why they don't work in IE, or they use
> ImageBundles and they all work in IE for them or people just don't use
> ImageBundles?
>
> It's frustrating having something work in everything BUT IE, which
> always tends to be the black sheep so far in my GWT experience.
>
> On Jul 14, 8:08 am, Sean  wrote:
> > I was wondering if IE still doesn't work correctly with Image Bundles.
> > I've seen several older posts (pre 1.6) where people had problems.
> >
> > I now have three ImageBundles that I use, all of them work in Firefox
> > and Chrome but not in IE. It's just a blank gif. where the image
> > should be.
> >
> > Are there any workarounds?
> > Thank you.
> >
>

--~--~-~--~~~---~--~~
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: Image Bundle not working in IE

2009-07-16 Thread Sean

I was just wondering if the lack of response is because people use
ImageBundles and don't know why they don't work in IE, or they use
ImageBundles and they all work in IE for them or people just don't use
ImageBundles?

It's frustrating having something work in everything BUT IE, which
always tends to be the black sheep so far in my GWT experience.

On Jul 14, 8:08 am, Sean  wrote:
> I was wondering if IE still doesn't work correctly with Image Bundles.
> I've seen several older posts (pre 1.6) where people had problems.
>
> I now have three ImageBundles that I use, all of them work in Firefox
> and Chrome but not in IE. It's just a blank gif. where the image
> should be.
>
> Are there any workarounds?
> Thank you.
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Image Bundle not working in IE

2009-07-14 Thread Sean

I was wondering if IE still doesn't work correctly with Image Bundles.
I've seen several older posts (pre 1.6) where people had problems.

I now have three ImageBundles that I use, all of them work in Firefox
and Chrome but not in IE. It's just a blank gif. where the image
should be.

Are there any workarounds?
Thank you.
--~--~-~--~~~---~--~~
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: IE 8 Image Bundle Issue

2009-07-10 Thread Thomas Broyer



On 9 juil, 10:59, Charlie M  wrote:
> Hi All,
>
> I have a strage problem thats apeared with IE 8. Basically I have a
> discolusre panel with a customer header. The header has a Grid on it
> with one row. The left most item is the standard disclosure triangle
> Image. I have mirrored the standard discloure panel header widget as
> much as possible. So when the open event is triggered it uses
> Image.applyTo to replace the current image with the correct one.
>
> This works fine in hosted mode and on Chrome and Firefox as well as IE
> 6 & 7. However in IE 8 when in the closed position it shows the open
> image as well as the closed image next to it. If I put it in to qerks
> mode it works fine like it does in IE7.
>
> Using IE8 developer tools it appears as though the img element its
> self is the wrong size. Each image is 16 x 16 however the img element
> is set to 32x16. On firefox its the correct size of 16x16.
>
> Anyone else experienced this.

See http://code.google.com/p/google-web-toolkit/issues/detail?id=3777

See also http://code.google.com/p/google-web-toolkit/issues/detail?id=3558
for all IE8 issues (while waiting for the GWT 1.7 release)
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



IE 8 Image Bundle Issue

2009-07-09 Thread Charlie M

Hi All,

I have a strage problem thats apeared with IE 8. Basically I have a
discolusre panel with a customer header. The header has a Grid on it
with one row. The left most item is the standard disclosure triangle
Image. I have mirrored the standard discloure panel header widget as
much as possible. So when the open event is triggered it uses
Image.applyTo to replace the current image with the correct one.

This works fine in hosted mode and on Chrome and Firefox as well as IE
6 & 7. However in IE 8 when in the closed position it shows the open
image as well as the closed image next to it. If I put it in to qerks
mode it works fine like it does in IE7.

Using IE8 developer tools it appears as though the img element its
self is the wrong size. Each image is 16 x 16 however the img element
is set to 32x16. On firefox its the correct size of 16x16.

Anyone else experienced this.

Charlie M

--~--~-~--~~~---~--~~
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: Image Bundle fails in GWT 1.6 hosted mode and IE

2009-04-30 Thread Gilles B

I experiment 'strange' errors with a core dump with my image bundle
using the same image in a grid with enable or disabled status. I don't
know where the error was located but I split the bundle with less
images and all work fine now.
--~--~-~--~~~---~--~~
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: Image Bundle fails in GWT 1.6 hosted mode and IE

2009-04-30 Thread Vitali Lovich
HostedMode is IE (on Windows), so that wouldn't be surprising.

On Thu, Apr 30, 2009 at 2:27 AM, Rafiq  wrote:

>
> But first even in GWT 1.6 hosted mode itself, it blows up. These are
> normal size images done for a slide show.
>
> On Apr 29, 7:02 pm, Thomas Broyer  wrote:
> > On 29 avr, 13:59, Rafiq  wrote:
> >
> > > While I expected Image bundle to improve my home page loading
> > > experience, it blows up both in GWT 1.6 hosted mode and IE. When i
> > > Googled it, It seems, this is an age old problem with GWT and it is
> > > recurring again.
> >
> > AFAICT, this won't be the case anymore in the next 1.6.x release in
> > IE7 and IE8 (will still be an issue in IE6).
> >
> > ...though it depends which problem you're facing (there's also the IE
> > limitation about the width of the image bundle, I don't know if it'll
> > go away with the removal of AlphaImageLoader for IE7+)
> >
>

--~--~-~--~~~---~--~~
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: Image Bundle fails in GWT 1.6 hosted mode and IE

2009-04-29 Thread Rafiq

But first even in GWT 1.6 hosted mode itself, it blows up. These are
normal size images done for a slide show.

On Apr 29, 7:02 pm, Thomas Broyer  wrote:
> On 29 avr, 13:59, Rafiq  wrote:
>
> > While I expected Image bundle to improve my home page loading
> > experience, it blows up both in GWT 1.6 hosted mode and IE. When i
> > Googled it, It seems, this is an age old problem with GWT and it is
> > recurring again.
>
> AFAICT, this won't be the case anymore in the next 1.6.x release in
> IE7 and IE8 (will still be an issue in IE6).
>
> ...though it depends which problem you're facing (there's also the IE
> limitation about the width of the image bundle, I don't know if it'll
> go away with the removal of AlphaImageLoader for IE7+)
--~--~-~--~~~---~--~~
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: Image Bundle fails in GWT 1.6 hosted mode and IE

2009-04-29 Thread Thomas Broyer


On 29 avr, 13:59, Rafiq  wrote:
> While I expected Image bundle to improve my home page loading
> experience, it blows up both in GWT 1.6 hosted mode and IE. When i
> Googled it, It seems, this is an age old problem with GWT and it is
> recurring again.

AFAICT, this won't be the case anymore in the next 1.6.x release in
IE7 and IE8 (will still be an issue in IE6).

...though it depends which problem you're facing (there's also the IE
limitation about the width of the image bundle, I don't know if it'll
go away with the removal of AlphaImageLoader for IE7+)
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Image Bundle fails in GWT 1.6 hosted mode and IE

2009-04-29 Thread Rafiq

While I expected Image bundle to improve my home page loading
experience, it blows up both in GWT 1.6 hosted mode and IE. When i
Googled it, It seems, this is an age old problem with GWT and it is
recurring again.
--~--~-~--~~~---~--~~
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: How to get URL for image within an image bundle - if possible

2009-04-15 Thread Magius

The imageBundle has a unique URL for all the images, in fact it's a
one big image made by all the little ones.
GWT loads the whole image but uses a clipper control to show only the
clip containing the image.


On Apr 15, 2:53 pm, Joe Hudson  wrote:
> Hi,
>
> I'm trying to use SmartGWT which doesn't seem to support GWT Image
> Bundles.
>
> I would like to set a background image on a canvas to be an image from
> an image bundle.  Is it possible to get a url from an image within an
> image bundle to do this?  Thanks.
>
> Joe
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



How to get URL for image within an image bundle - if possible

2009-04-15 Thread Joe Hudson

Hi,

I'm trying to use SmartGWT which doesn't seem to support GWT Image
Bundles.

I would like to set a background image on a canvas to be an image from
an image bundle.  Is it possible to get a url from an image within an
image bundle to do this?  Thanks.

Joe
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---