JSNI badly slow in debug mode

2011-07-17 Thread OrNOt
Hi, There, I have a application which uses GWT's canvas to set the Image data color. For a picture, say, 500*500 pixels, the consumed overall invocation time in debug mode is totally unaccepted due to the doInvoke method in com.google.gwt.dev.shell.ModuleSpaceOOPHM class. The code snippe

optimisation

2011-07-17 Thread Deepak Singh
hi, Is declaring cell widgets variable as static an optimisation ? OR simply declaring a variable as static is an optimisation or simply it does not make any difference as per optimisation / performance is concerned. Kindly suggest. -- You received this message because you are subscribed to th

Re: Cookie that doesn't get sent to server

2011-07-17 Thread Markus A.
Hi Jens, thanks for your reply. I had actually looked into this and was under the impression it requires HTML5, which is not quite that widely available yet. But maybe I misunderstood something. I'll have another look at it. Greetings, Markus On Sat, Jul 16, 2011 at 6:21 PM, Jens wrote: > Y

Aw: GWT working fine in Hosted mode but not in complied mode

2011-07-17 Thread Jens
First you should add GWT.setUncaughtExceptionHandler(newGWT.UncaughtExceptionHandler() { } ) to your EntryPoint's onModuleLoad() method. In the UncaughtExceptionHandler check if its an UmbrellaException and if so iterate over getCauses() and print each stack trace to the log. That way yo

Re: Using Jcaptcha with GWT

2011-07-17 Thread junaid
ok thats great i just used your above link http://www.javacodegeeks.com/2010/06/add-captcha-gwt-application.html and its working its using simplecaptcha ,but i was preferably looking for JCaptcha .. Thanks for your help On Sun, Jul 17, 2011 at 8:52 AM, camerojo wrote: > Just got this going - th

Re: Any experience with GWT and JRebel

2011-07-17 Thread joe kolba
Yes On Jul 17, 2011 12:56 AM, "karthik reddy" wrote: > Kind of a digression but could benefit the community. Is there a free > alternative to JRebel on the server side ?? > > -- > You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. > To view this d

Re: Which UiField type is this ?

2011-07-17 Thread JC
Ok that works. I have 1 more question. When I add a panel to the center container it fills the entire center as expected. How can I round the corners? I want to round the top right, bottom left and bottom right corners. -- You received this message because you are subscribed to the Google Groups

Aw: Re: Which UiField type is this ?

2011-07-17 Thread Jens
Round corners can be done with CSS (border-radius) but this only works in modern browsers. It does not work in IE6/7/8 but there are projects that bring border-radius to these IE versions, e.g. http://css3pie.com/ (but I do not know how it affects performance). Other solution would be to use sm

Re: UiBinder gwt designer not working

2011-07-17 Thread Eric Clayberg
If you are looking for help, you should post a complete test case project. There isn't enough info here for us to help you. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.co

Re: Which UiField type is this ?

2011-07-17 Thread JC
If I wanted to try the second option, how would you design panels and drop the images directly in the corners? Do you need a custom layout? -- 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-too

Re: Which UiField type is this ?

2011-07-17 Thread Thomas Broyer
You can use a DecoratorPanel. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/qEfxHov-dokJ. To post to this group, send email to google-web-tool

Re: Any experience with GWT and JRebel

2011-07-17 Thread karthik reddy
and the name of the alternative is ... ? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/IzALEa8IbGEJ. To post to this group, send email to goog

Writing a Primary Linker Guidance

2011-07-17 Thread Sanjay
Sorry for bumping, but I have an update. After spending some time researching this topic, it seems to me that the most appropriate way to accomplish server side script selection is to write a new primary linker. These seem to support a lot of functionality that I don't need (like including the

Re: GWT 2.1+ Compiler issues

2011-07-17 Thread Kevin Jordan
Yeah, I'm not doing it in Eclipse either. I'm doing it in Jenkins with Maven. Takes anywhere from 20-50 minutes now whereas before I switched to 2.3 and started adding RequestFactory stuff, it took 6-10 minutes. It also seems to take 11GB of memory which is my all my main memory + most of the sw

How to add a widget inside a Text Area GWT

2011-07-17 Thread gangurg gangurg
How do i add a widget inside a GWT Text Area . I want to a Grid ,or VerticalPanel or HorizontalPanel -- 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

Re: optimisation

2011-07-17 Thread Colin Alworth
The compiler will make the methods it can into static calls. As far as making an instance static (i.e. making a singleton), this probably won't gain you anything for a Cell, which has very little state, but in the case of very large widgets/composites, it might make sense to do. So Cell, probab

Re: strange issue:Could not connect to remote UI listening at localhost:34742. Using default UI instead.

2011-07-17 Thread Alex Luya
Different from this one: http://comments.gmane.org/gmane.org.google.gwt/39043,no any exception showed. netstat -npl shows that eclipse is listening on port 34742.At first,I doubt this issue comes from eclipse,so switch from v3.6 to v3.7,got same problem,then create new metadata,no luck.Anyone can g

回覆:How to add a widget inside a Text Area GWT

2011-07-17 Thread yes2000
In GWT, If one widget can contain another widget, It must be implement HasWidgetsinterface. So if you wnat int add a widget to your "GWT Text Area", you first should check your "GWT Text Ar

Re: 回覆:How to add a widget inside a Text Area GWT

2011-07-17 Thread gangurg gangurg
Thanks , I did that but the widget does not show up . Do you have any example 2011/7/17 yes2000 > In GWT, If one widget can contain another widget, It must be implement > HasWidgetsinterfac