Facing issue while designing UI in GWT

2012-07-06 Thread vikash@Atos
Hi, Is there any way, we can develope and run a J2EE App in GWT environment? Can we mix J2EE components, like servlets and jsps in GWT app? Facing issue while designing UI with GWT. Any help guide would be helpful. Thanks in advance. Regards, Vikash -- You received this message because you

Re: Facing issue while designing UI in GWT

2012-07-06 Thread ashwin.desi...@gmail.com
simply put GWT is a client side library. you develop using java/ phyton or Go instead of javascript. Its is similar to packaging a jsp/ html page inside a web app and would run under any j2ee container. yes you can combine, servlets and jsp in GWT app. ~Ashwin On Fri, Jul 6, 2012 at 11:44 AM,

Re: Facing issue while designing UI in GWT

2012-07-06 Thread vikash@Atos
Hi Thanks for Reply. Is there any development guide which specifies way of development of a GWT application? How can we connect a GWT App, to a DB? Thanks On Friday, July 6, 2012 8:14:43 AM UTC+2, vikash@Atos wrote: Hi, Is there any way, we can develope and run a J2EE App in GWT

Video from io 2012 : The History and Future of Google Web Toolkit

2012-07-06 Thread Nicolas Antoniazzi
Does anyone know if there is a video about the gwt session from io 2012: The History and Future of Google Web Toolkit by Ray Cromwell? I know that it was not live streamed, but I tought that we could get a delayed video. -- You received this message because you are subscribed to the Google

Re: Facing issue while designing UI in GWT

2012-07-06 Thread Kanagaraj M
On Friday, 6 July 2012 12:44:14 UTC+5:30, vikash@Atos wrote: Hi Thanks for Reply. Is there any development guide which specifies way of development of a GWT application? Yes. There are lot of sample applications available. The one which comes with the eclipse plugin is a good one to

Re: Facing issue while designing UI in GWT

2012-07-06 Thread Amit Sharma
hi Vikas I think you are using servlet with GWT in the form of its Service implementation class ...here you are using gwt-servlet.jar file.also in case you want pure servlet to implement with GWT please go through this url :

Scheduler and DeferredCommand stopping in unit tests

2012-07-06 Thread salk31
Has anybody else had cases where Scheduler and DeferredCommands have stopped being scheduled/run when used in unit tests? We have a lot of async code so need to use them a lot but currently, seemingly at random, our tests stall until they get timed out. Even setting up a periodic job that is

Re: Facing issue while designing UI in GWT

2012-07-06 Thread vikash@Atos
Hi, I guess, using DB in GWT Application is something different, than normal web app. Something client-server way is used for this purpose? Is there any example, where I can see how to connect a GWT app to MySQL? Thanks On Friday, July 6, 2012 10:10:08 AM UTC+2, Kanagaraj M wrote: On

Re: Debugging gwt maven project server side under eclipse

2012-07-06 Thread zame...@gmail.com
2012. július 5., csütörtök 18:44:25 UTC+2 időpontban Thomas Broyer a következőt írta: On Thursday, July 5, 2012 1:38:11 PM UTC+2, zam...@gmail.com wrote: Hi All, When I make a gwt project with gwt-maven-plugin, I cannot debug server side codes. Client side is working well, but it

CellTable display in DialogBox

2012-07-06 Thread skalimer0
Hello, I want to center a DialogBox when the cellTable is loaded (the celltable is include in the DialogBox). The LoadingStateChangeHandler is just before the screen display and the center() function of the DialogBox is useless. I want to know if an Event exist just after the screen refresh

Re: Video from io 2012 : The History and Future of Google Web Toolkit

2012-07-06 Thread Paulo Martins
I'm also looking for this presentation. It's really strange it's not already uploaded, because it seems that all presentations are already uploaded. In the meanwhile, Ray Cromwell has shared his slides on G+:

Re: CellTable display in DialogBox

2012-07-06 Thread Jens
Have you already tried to wrap your dialog.center() call in a Scheduler.get().scheduleDeferred()? -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: Facing issue while designing UI in GWT

2012-07-06 Thread Kanagaraj M
One thing you have to notice here is, your XxxServiceImpl itself a servlet. Check this out - http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/gwt/user/server/rpc/RemoteServiceServlet.html I dont see any problem in accessing DB from a servlet. From the servlet you can make

Re: CellTable display in DialogBox

2012-07-06 Thread skalimer0
I just want to find a clean method... for me : scheduler it's not clean for cellTable loading... that's work... OK... but... not clean... It may be exist an event to say hey... the cell table is refreshed on your browser !! Le vendredi 6 juillet 2012 10:30:43 UTC, Jens a écrit : Have you

Re: CellTable display in DialogBox

2012-07-06 Thread skalimer0
I note that : getVisibleItemCount() getVisibleItems() getVisibleItem() functions works only when the screen refresh is done... an event may be exist... Le vendredi 6 juillet 2012 10:19:25 UTC, skalimer0 a écrit : Hello, I want to center a DialogBox when the cellTable is loaded (the

Re: Know how wide text will be on a Canvas

2012-07-06 Thread Sean
Ah, thank you! On Thursday, July 5, 2012 8:37:00 PM UTC-4, Jim Douglas wrote: http://google-web-toolkit.googlecode.com/svn/javadoc/2.5/com/google/gwt/canvas/dom/client/Context2d.html#setFont(java.lang.String)

Re: CellTable display in DialogBox

2012-07-06 Thread skalimer0
I Found cellTable can emit ValueChangeEvent when data is display on the screen i make that : cellTable.addHandler(new ValueChangeHandlerT(){ @Override public void onValueChange(ValueChangeEventT event) { // DO THE RIGHT THING !!

Invoking Value Change Event via JS on TextBox

2012-07-06 Thread pragati
I have a requirement where via javascript, a value is copied into the GWT TextBox widget and the Value Change Event should get fired so that i know i have to do something. Is there a way to achieve this? It works via JSNI, which actually does a call to TextBox.setValue(value, true) But i

Re: Invoking Value Change Event via JS on TextBox

2012-07-06 Thread Thomas Broyer
On Friday, July 6, 2012 3:00:12 PM UTC+2, pragati wrote: I have a requirement where via javascript, a value is copied into the GWT TextBox widget and the Value Change Event should get fired so that i know i have to do something. Is there a way to achieve this? It works via JSNI, which

Re: Video from io 2012 : The History and Future of Google Web Toolkit

2012-07-06 Thread Jmscavaleiro
Paulo, many thanks for sharing the presentation. Regards! Sexta-feira, 6 de Julho de 2012 11:22:10 UTC+1, Paulo Martins escreveu: I'm also looking for this presentation. It's really strange it's not already uploaded, because it seems that all presentations are already uploaded. In the

Re: GWT 2.5.0-rc1 and eclipse (3.7 and 4.2) problems

2012-07-06 Thread Andrey Korzhevskiy
I had that problem. The solution is to clean cache/cookies/etc in your browser (i use firefox for devmode). среда, 4 июля 2012 г., 9:36:51 UTC+4 пользователь Juan Pablo Gardella написал: Hi folks, I tried with eclipse 3.7 and eclipse 4.2 run inside eclipse with GWT 2.5.0-rc1 and had the

Re: Know how wide text will be on a Canvas

2012-07-06 Thread Jim Douglas
Thanks for giving me a reason to go looking for it. I added the incubator Canvas to my app a few years ago; I hadn't noticed that GWT now includes an official Canvas implementation (as of 2.2, apparently). On Jul 6, 4:33 am, Sean slough...@gmail.com wrote: Ah, thank you! On Thursday,

Re: Debugging is terribly slow

2012-07-06 Thread Magnus
Hello, thanks for this advice. I am thinking about it for some days now and I would like to give it a try. Therefore, I searched for some documentation on this technique. But all that I found was the article Organizing Project in the GWT docs. In this article, the reason for using modules is

Re: RF and REST

2012-07-06 Thread Nader
For gwt side (client side) : As mentioned by others restyGWT is a good choice though we customized it a bit to fit all our needs (especially around generic types). But take a look at Errai also : www.jboss.org/*errai*/ For the server side : For creating a rest API (or *rest back end* in your

Re: Using gwt to change java files

2012-07-06 Thread Nader
This project uses get and the javascript comes from java files. What do you mean exactly by ***get* ? And what do you mean that javascript comes from java ? Do you mean java files compiled by a gwt compiler to javascripts or what ? Could you provide some more details, because your

Re: RF and REST

2012-07-06 Thread Кирилл Карпенко
MIqp 03.07.2012 13:25 пользователь chal...@gmail.com написал: -- 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

Re: Debugging is terribly slow

2012-07-06 Thread Jens
It is likely not the response you're looking for, but our app has grown so large we faced the same issues as you. We're taking the radical step of breaking it into many standalone modules that can link between each other (compile to different wars). That way, when you're opening/debugging

Re: Google IO 2012 : no GWT session ?

2012-07-06 Thread Murray
Daniel, I was at Google I/O last week and decided ask for myself.. the responses I got, was NOT good I flat out asked one Googler, working a developer bar in the main lobby (not sure what team he was on) ..should I continue my project that's not yet released, in GWT or what..? and he

Re: Google IO 2012 : no GWT session ?

2012-07-06 Thread Jim Douglas
Murray: https://developers.google.com/events/io/sessions/gooio2012/218/ https://docs.google.com/a/basis.com/presentation/d/1pC9WK80-fzIs2iMQOO3Jsvfmqv2erI9xucuF3lHOE7Q/edit?pli=1#slide=id.p18

Re: Google IO 2012 : no GWT session ?

2012-07-06 Thread Thomas Broyer
On Friday, July 6, 2012 10:37:48 PM UTC+2, Jim Douglas wrote: Murray: https://developers.google.com/events/io/sessions/gooio2012/218/ https://docs.google.com/a/basis.com/presentation/d/1pC9WK80-fzIs2iMQOO3Jsvfmqv2erI9xucuF3lHOE7Q/edit?pli=1#slide=id.p18

Re: Google IO 2012 : no GWT session ?

2012-07-06 Thread Murray
Jim, Thanks for the reply and links, I never noticed Rays session on the list, then I again.. the sessions were being constantly updated anyways... Wish I had gone to that one On Friday, July 6, 2012 4:37:48 PM UTC-4, Jim Douglas wrote: Murray:

Re: Google IO 2012 : no GWT session ?

2012-07-06 Thread Thomas Broyer
On Friday, July 6, 2012 11:46:00 PM UTC+2, Murray wrote: Jim, Thanks for the reply and links, I never noticed Rays session on the list, then I again.. the sessions were being constantly updated anyways... Wish I had gone to that one Also, we've been in close touch with Ray recently (the

Re: Google IO 2012 : no GWT session ?

2012-07-06 Thread Alain Ekambi
That links is dead Thomas :) 2012/7/7 Thomas Broyer t.bro...@gmail.com On Friday, July 6, 2012 11:46:00 PM UTC+2, Murray wrote: Jim, Thanks for the reply and links, I never noticed Rays session on the list, then I again.. the sessions were being constantly updated anyways... Wish I had

Re: Google IO 2012 : no GWT session ?

2012-07-06 Thread Thomas Broyer
On Saturday, July 7, 2012 12:15:21 AM UTC+2, nino wrote: That links is dead Thomas :) Ghaa, of course: code.google.com, not www.google.com ;-) Introductory message with correct link at https://plus.google.com/109697072684132989725/posts/WwRaBNhJAch -- You received this message because you

Re: Google IO 2012 : no GWT session ?

2012-07-06 Thread Kevin Moore
Thomas, The uncertainty spooks me just a little, since the rumors started I have been going over in my head what It would take to retool my existing app to a Jsp/appengine app, and so far I like what I am thinking, especially given the new Rest features announced at IO. What are your thoughts on

Re: Google IO 2012 : no GWT session ?

2012-07-06 Thread kritic
Let's not forget that GWT means Google Web Toolkit. The name itself does not necessarily mean, stick with java only. There could conceivably be other languages introduced to it. It would make sense if the fragmentation that is Google's dev tools be packaged into Google Web Toolkit. I wouldn't

Re: Debugging is terribly slow

2012-07-06 Thread Joseph Lust
Jens, We've not yet solved redownloading those pieces. However, the overhead is worth it to us so that we can redeploy just a single module (entrypoint). Sincerely, Joseph -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this

Re: Any summary on The History and Future of Google Web Toolkit available?

2012-07-06 Thread Joseph Lust
Folks uploading it must have a very slow internet connection. The upload has taken over a week! Joe -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: Scheduler and DeferredCommand stopping in unit tests

2012-07-06 Thread Joseph Lust
I have found that scheduling a deferred event can be at times an anti-pattern. For example, let's say I've got a bunch of UI elements getting initialized. I had in the past used a deferred command to finish the UI init once everything is there. In this case there would be errors that occurred

Re: Google IO 2012 : no GWT session ?

2012-07-06 Thread Thomas Broyer
On Saturday, July 7, 2012 1:46:24 AM UTC+2, Murray wrote: Thomas, The uncertainty spooks me just a little, since the rumors started I have been going over in my head what It would take to retool my existing app to a Jsp/appengine app, and so far I like what I am thinking, especially

Re: Any summary on The History and Future of Google Web Toolkit available?

2012-07-06 Thread Thomas Broyer
On Saturday, July 7, 2012 3:30:00 AM UTC+2, Joseph Lust wrote: Folks uploading it must have a very slow internet connection. The upload has taken over a week! I've heard they might be on vacations :-( (no kidding!) -- You received this message because you are subscribed to the Google

Re: Debugging is terribly slow

2012-07-06 Thread Thomas Broyer
On Saturday, July 7, 2012 3:29:06 AM UTC+2, Joseph Lust wrote: Jens, We've not yet solved redownloading those pieces. However, the overhead is worth it to us so that we can redeploy just a single module (entrypoint). As you said though, this is a radical step, and you could have built

Re: Google IO 2012 : no GWT session ?

2012-07-06 Thread Kevin Moore
Thomas, Thanks for your comments, very nsightful. It was not my intention to compare jsp/appengime to gwt but rather to the RPC portion of gwt . With appengine I have the flexibility of many of ux approaches., but now I am excited about creating a services based approach to my product giving the