Re: incubator gen2 vs. widgetideas

2009-10-13 Thread Kevin Wong

Also, I had to include the following in my GWT XML to get the slider
to look right.

stylesheet src=SliderBar.css/

Shouldn't there be instructions for this somewhere?

On Oct 13, 3:25 pm, mrpantsuit kevin.peter.w...@gmail.com wrote:
 There is a SliderBar in both com.google.gwt.gen2.picker.client and
 com.google.gwt.widgetideas.client.  Which one should I use?
--~--~-~--~~~---~--~~
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: ImageBundle reuse images

2009-06-11 Thread Kevin Wong

Awesome.  Thanks guys.

On Jun 11, 11:19 am, Jason Essington jason.essing...@gmail.com
wrote:
 Images widgets at their core contain a DOM element and you can't have  
 an element in two places at once.

 However the beauty of ImageBundle is that it caches that actual image  
 so you don't incur additional bandwidth when you create multiple image  
 widgets using the same image bundle.

 -jason

 On Jun 10, 2009, at 3:44 PM, mrpantsuit wrote:





  This might be a stupid question, but can I use the same Image created
  from an ImageBundle in multiple places on my page?  I guess the more
  general question is can I use the same Image in multiple places in my
  page.  I assume so.
--~--~-~--~~~---~--~~
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: Scriptaculous appear effect with PNG with transparency shows black background on IE

2009-06-10 Thread Kevin Wong

Sorry, I should have specified that.  The problem occurs in both IE6
and IE8.  (I didn't test on IE7, but I assume it's the same.)  I don't
think the problem is due to the lack of PNG transparency support in
IE6, since it also occurs in IE8; but is perhaps a subclass of that
problem related to transparent PNGs under animation.

Again, when I use an ImageBundle with a single image, it works.
However, when I add a second image to the ImageBundle, the problem
occurs.  Perhaps there is a GWT bug with fixing PNG transparency for
IE for ImageBundles with multiple images.

Someone on a Scriptaculous forum seems to be having the exact same
problem (although, the thread contains no answers):
http://groups.google.com/group/prototype-scriptaculous/browse_thread/thread/e4822eaa34a97839

On Jun 10, 10:47 am, Jason Essington jason.essing...@gmail.com
wrote:
 Which version of IE? IE 6 doesn't really support PNG transparency, and  
 requires an activeX hack which may implode with the effects.

 -jason

 On Jun 9, 2009, at 8:31 PM, mrpantsuit wrote:





  I'm actually using the GWT Widget Library's Effect class, which has an
  Effect.appear(Widget) method.  On IE, When the widget is an Image
  that's a PNG with transparency, while the effect is animating the
  background of the image shows black.  The same applies for other
  transparency effects, e.g., Effect.pulsate(), etc.

  This doesn't occur when the image is retrieved from an ImageBundle
  with only one image.  If I add other images to the ImageBundle, the
  problem returns.  (Also, if I use an image created with the Image
  (String) constructor, the problem occurs.)  Thus, as a workaround, for
  each image that will have an Effect animation applied, I create a new
  ImageBundle.

  Does anyone know what's going on here?  Does anyone have a better
  solution?

  Thanks
--~--~-~--~~~---~--~~
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: IE6 PNG transparency fixes for CSS images

2009-05-25 Thread Kevin Wong

Thanks.  No, I couldn't seem to get iepngfix to work either.  I
must've been doing something wrong.

ImageBundles are not an option, as the images are specified in the
CSS.

I got a solution working where I use a IE6 specific CSS file that
references GIF versions of my PNGs, and apply it like so:

!--[if lte IE 6]
link rel=stylesheet type=text/css href=stylesheet/lte-
ie6.css /
![endif]--

On May 25, 6:36 am, twdarkflame darkfl...@gmail.com wrote:
 Not the ones you mention, but if you use Image-Bundles, I believe GWT
 deals with the problem itself.

 Aside from that have you triedhttp://www.twinhelix.com/css/iepngfix/
 ?
 Because thats what I was using before and it worked just fine with
 GWT.

 On May 22, 5:19 am, mrpantsuit kevin.peter.w...@gmail.com wrote:

  I can't seem to get any of the IE6 PNG transparency fixes
  (SuperSleight, 
  unitpngfix,http://www.komodomedia.com/blog/2007/11/css-png-image-fix-for-ie/)
  working in my GWT app.

  (Note that my PNGs are specified in my CSS, so solutions like PNGImage
  won't help.)

  Has anyone gotten any of these working?
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---