Re: UiBinder custom panel

2011-08-29 Thread Kurtt
Oh, brilliant. GWT should really develop an UiChild version what can directly associate to a method like addWidgetToColomn( Widget w, int i). Thank you ~ :) On Aug 28, 5:22 pm, Thomas Broyer t.bro...@gmail.com wrote: Yes, simply annotate a method with

UiBinder custom panel

2011-08-27 Thread Kurtt
Hi, all, is it possible to create a custom panel, and use it just like the usage of g:west: my:MyPanel my:colomn_1 g:Button/ /my:colomn_1 my:colomn_2 g:Button/ /my:colomn_2 /my:MyPanel where my:colomn_1 is encountered , i want GWT to call

Re: Support for IE6 isn't feasible in this format?

2011-08-01 Thread Kurtt Lin
Douglas jdou...@basis.com wrote: Kurtt, What's your situation with IE6? Do you develop software for corporate users who refuse to upgrade? Did you look at the other links? Google posted that note about IE6 more than a year and a half ago, and Microsoft is literally begging people to stop using

Support for IE6 isn't feasible in this format?

2011-07-30 Thread Kurtt
In the section Image Sprites of this doc(http://code.google.com/ webtoolkit/doc/latest/DevGuideClientBundle.html#ImageResource), Google says: = Support for IE6 isn't feasible in this format, because structural changes to the DOM are necessary to implement a windowing

Re: Support for IE6 isn't feasible in this format?

2011-07-30 Thread Kurtt
... http://googleenterprise.blogspot.com/2010/01/modern-browsers-for-mode... On Jul 29, 11:01 pm, Kurtt kurtt@gmail.com wrote: In the section Image Sprites of this doc(http://code.google.com/ webtoolkit/doc/latest/DevGuideClientBundle.html#ImageResource), Google says

Support for IE6 isn't feasible in this format, because structural changes to the DOM are necessary to implement a windowing effect. Once it's possible to distinguish ie6 and ie7 in user.agent, we co

2011-07-29 Thread Kurtt
In the section Image Sprites of this doc(http://code.google.com/ webtoolkit/doc/latest/DevGuideClientBundle.html#ImageResource), Google says: = Support for IE6 isn't feasible in this format, because structural changes to the DOM are necessary to implement a windowing

Support for IE6 isn't feasible in this format, because structural changes to the DOM are necessary to implement a windowing effect. Once it's possible to distinguish ie6 and ie7 in user.agent, we co

2011-07-29 Thread Kurtt
In the section Image Sprites of this doc(http://code.google.com/ webtoolkit/doc/latest/DevGuideClientBundle.html#ImageResource), Google says: = Support for IE6 isn't feasible in this format, because structural changes to the DOM are necessary to implement a windowing

Re: GWT 2.2 Canvas support for IE6 (GWTCanvasImplIE6)

2011-03-02 Thread Kurtt Lin
Even partially supporting is welcomed, and developers should have known about its IE6's poor performance, thus avoid rendering lots elements. Actually i want Canvas in IE 6/7/8 badly. T T On Wed, Mar 2, 2011 at 9:55 PM, Philip Rogers p...@google.com wrote: Because of the difficulty of

How to use the ImageBundle for dynamically generated images?

2011-02-24 Thread Kurtt
I have this requirement: Client sends back an instruction in the form of Sequence-number Color1 Color2 in order to retrieve 3 images: a gradient from Color1 to transparent, a gradient from Color2 to transparent, a gradient from Color1 to Color2. For instance: 0001#FF#00 0002#FF00#00FF00

How to make GWT pages search engine friendly?

2011-02-24 Thread Kurtt
I want to add automatically hidden sub-menus in my page, and do this with GWT, thus they are actually embedded in the js files. How to make the links in the sub-menus visible to the search engine? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: How about do the UI in the Java-Swing way?

2011-02-17 Thread Kurtt
1) About accessibility : A Button, which implemented in the way i imagined, would produce a div tag as well as a canvas tag. Both tags occupy the same position, but the div tag is on the top of the canvas tag. So, the div tag takes the responsibility for accessibility. 2) Everything (focus

Trouble in importing GWTCanvas

2011-02-16 Thread Kurtt
I installed my gwt sdk 2.2 automatically through Eclipse - Install New Software. But when i tried to use GWTCanvas, Eclipse reports an error The import com.google.gwt.widgetideas can not be resolved. Isn't GWTCanvas is a build-in member of the jars? Why i can't even find the widgetideas package in

Re: Trouble in importing GWTCanvas

2011-02-16 Thread Kurtt
, 10:24 pm, Kurtt kurtt@gmail.com wrote: I installed my gwt sdk 2.2 automatically through Eclipse - Install New Software. But when i tried to use GWTCanvas, Eclipse reports an error The import com.google.gwt.widgetideas can not be resolved. Isn't GWTCanvas is a build-in member of the jars? Why

Re: detect generics type

2011-02-16 Thread Kurtt
i heard that some 3rd-party lib adds the Reflection ability to GWT. This way you can pass in T,and create exactly an instance of T, and return it. On Feb 17, 1:29 am, Jozef Môstka mostk...@gmail.com wrote: Hi all, i have method : public static final Tvoid callJSONRPCService(AsyncCallbackT

How about do the UI in the Java-Swing way?

2011-02-16 Thread Kurtt
GWT 2.2 introduces the Canvas, which is actually a 2D-API. This is exactly what Java Swing is based on. And we can create a LooknFeel class for GWT, which wraps a set of painting Canvas method. If we set the app a certain LooknFeel, when a widget is showing , the widget asks the LooknFeel to draw