Re: Trouble with the google account authentication

2011-03-13 Thread gax
No idea, anyone ? gax -- 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.

[CodeFest] Participate in Manthan - Algorithm Intensive Programming Contest

2011-03-13 Thread vishal kumar rai
Hello, *CodeFest'11* http://codefest.org.in/, the annual online international coding festival of Computer Engineering Society IT-BHU, presents Manthanhttp://codefest.org.in/event.php?name=manthan- the *algorithm intensive* programming contest. The contest aims to provide a platform for

[no subject]

2011-03-13 Thread Javid Alimohideen
http%3A%2F%2Fwww%2Eraulmagdaleno%2Ecom%2Ferw%2Ehtml -- 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

gwt-user file size differences

2011-03-13 Thread moorsu
Hi, There appears to be difference in the file size of gwt-user-2.2.0.jar downloaded from http://repo2.maven.org/maven2/com/google/gwt/gwt-user/2.2.0/ and from the zip file downloaded from http://google-web-toolkit.googlecode.com/files/gwt-2.2.0.zip repo1 - gwt-user-2.2.0.jar

Re: gwt-user file size differences

2011-03-13 Thread Thomas Broyer
On Sunday, March 13, 2011 2:27:29 PM UTC+1, moorsu wrote: I am using maven to configure the dependency. Could you please let me know the correct maven repo to use?. The correct Maven repo is Maven Central. -- You received this message because you are subscribed to the Google Groups

Re: gwt-user file size differences

2011-03-13 Thread moorsu
Hi Thomas, Do you mean repo1.maven.org?. I see the same file differences when compared to the files downloaded from http://google-web-toolkit.googlecode.com/files/gwt-2.2.0.zip -moors On Sun, Mar 13, 2011 at 7:16 PM, Thomas Broyer t.bro...@gmail.com wrote: On Sunday, March 13, 2011 2:27:29

Hash user id from Users service

2011-03-13 Thread Sydney
Hello, In one of my RPC, I return the user ID, so it is available client side. The documentation states that we should hash this user ID. *Note:* Every user has the same user ID for all App Engine applications. If your app uses the user ID in public data, such as by including it in a URL

Re: FieldUpadater not work

2011-03-13 Thread John LaBanca
ImageCell doesn't have an editable value, so there is nothing to update. Are you trying to catch click events? If so, do one of the following: *Option 0:* Add a SelectionModel to the CellTable to handle row selection, *Option 1:* - Override ImageCell#getConsumedEvents() to return click so

Re: GWT Designer Exits Upon Loading

2011-03-13 Thread Eric Clayberg
It would be hard to guess without a test case and associated crash logs. It could be a caused by a corrupt Eclipse or GWT installation or a bad / incompatible component. Are you using any 3rd party components? -Eric On Mar 12, 2:10 pm, Eric Atkinson atki4...@gmail.com wrote: Does anybody know

Re: gwt-user file size differences

2011-03-13 Thread Thomas Broyer
I don't know what can cause the difference in filesize, but the JARs on Maven Central are published *by* the GWT Team. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Unable to run GWTP app after migration to 2.2

2011-03-13 Thread natas
Christofer and Juan, Thank you very much for your answers. Indeed that seems to be the problem. But I can't get it to work... These are the steps I've performed: - Configured my project to use GWT SDK 2.2.0 - Downloaded both gin-1.5 and gwtp-all-0.5.1 - Added all the jars to war/WEB-INF/lib/

Re: Unable to run GWTP app after migration to 2.2

2011-03-13 Thread natas
Christofer and Juan, Thank you very much for your answers. Indeed that seems to be the problem. But I can't get it to work... These are the steps I've performed: - Configured my project to use GWT SDK 2.2.0 - Downloaded both gin-1.5 and gwtp-all-0.5.1 - Added all the jars to war/WEB-INF/lib/

Re: Unable to run GWTP app after migration to 2.2

2011-03-13 Thread Christian Goudreau
You forgot the Gin 1.5 dependencies. http://code.google.com/p/gwt-platform/wiki/PortingV1#Dependencies http://code.google.com/p/gwt-platform/wiki/PortingV1#DependenciesCheers, On Sun, Mar 13, 2011 at 2:01 PM, natas ribeiro.si...@gmail.com wrote: Christofer and Juan, Thank you very much for

dynamic image gallery

2011-03-13 Thread Ramon Salla
I am wondering how to use CellTable to have a blazing fast image gallery. Le't me explain my idea for a fixed N image column table with hundreds of rows. 1.- Ask to server for a xml/json object with and array of X images grouped by N images per group. result /result 2.- Build a CellTable with

image gallery with celltable or celllist

2011-03-13 Thread Ramon Salla
I am wondering how to use CellTable to have a blazing fast image gallery. Le't me explain my idea for a fixed N image column table with hundreds of rows. 1.- Ask to server for a xml/json object with and array of X images grouped by N images per group. - result - images - group

Re: Any function to catch the Module Unload event?

2011-03-13 Thread Y2i
I use Window.addCloseHandler(new CloseHandlerWindow() {...}). Not sure if this is recommended but it works. -- 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

Re: Looking for best practices for handling data between composites

2011-03-13 Thread Chris
It definitely helps quite a bit - thank you. On Mar 11, 8:19 pm, Jens jens.nehlme...@gmail.com wrote: You do not have to use MVP in order to use EventBus. If you do not use dependency injection with google-gin just create a factory class with a static getter that returns an EventBus singleton,

Load javascript on the fly

2011-03-13 Thread Simon M
I try to integrate with Facebook. I want to load the javascript file from Facebook dynamically. I created the following method to load the js file and then initialize FB: private native void initFacebook(String fbAppId) /*-{ var script = document.createElement(script); script.src =

Re: Load javascript on the fly

2011-03-13 Thread khiem nguyen
maybe you should try to include the script in module.gwt.xml file instead ? On Sun, Mar 13, 2011 at 8:27 PM, Simon M si...@majou.org wrote: I try to integrate with Facebook. I want to load the javascript file from Facebook dynamically. I created the following method to load the js file and

Re: how to post handle RequestFactory server warnings/errors?

2011-03-13 Thread A. Stevko
Thanks for the reply Thomas :) Your blogs and writings were very necessary to my understanding of the new technologies. Got time for another similar question re: request factory design? Am I right in thinking that a DAO layer is the correct place for the extra business logic associated with

Re: ScriptElement to be shown in popupPanel

2011-03-13 Thread Deepak Singh
Hi, i created an iframe as follows IFrameElement iFrame = Document.get().createIFrameElement(); iFrame.appendChild(script); iFrame.appendChild(scriptForSrc); iFrame.setSrc(scriptForSrc.getSrc()); iFrame.setId(hello); iFrame.setTabIndex(-1); popUp.getElement().appendChild(iFrame); But again

Looking for some help

2011-03-13 Thread nino ekambi
Hello People, With *gwt4air 2.1* coming out soon and including a GWT API for Adobe FLEX, I started writing an Explorer application to illustrate the use of the API. I know you guys are busy working on you daily bussiness but i ll love to have some inputs on the application on how i can improve

Re: [appengine-java] does the Google AppEngine or WebToolkit replace the bootclasspath of the running Java runtime?

2011-03-13 Thread Shawn Brown
Hi, Do you have the contact information for the Apple Engineer? He's contacted you, Toby, off list now. I got cc'd on the mail. Let me know if for some reason you didn't get it. Shawn -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: Load javascript on the fly

2011-03-13 Thread Simon M
Yes that would be easier but I don't want to load the Facebook javascript everytime, only when it is needed. I think the issue happened because the FB object was called before the script was loaded. So I added some code to wait until the code is loaded: private native void initFacebook(String

Usingh JSP in GWT - JSTL Compilation issues

2011-03-13 Thread j.singh.developer
I am working on a new project and have decided to use Spring Security to provide authentication feature. I am using my custom login.jsp page to provided a login form. The page uses few JSTL tags to carry out the implementation. I have included the appropriate .jar files as mentioned in the below

Cell Table Set Sortable method not showing /working

2011-03-13 Thread junaid
Hi , I have a cell table column name *TitleColumn* i want to sort that ,as per the example here http://code.google.com/webtoolkit/doc/latest/DevGuideUiCellTable.html they have used setSortable(true); but i couldn't find this method for my cell table / column . it says setSortable(true) is

Re: How to send an Email with GWT to a specific Address?

2011-03-13 Thread Juan Pablo Gardella
It depends. For example if you put your app in an application container, you can configure it in the server and in your app take it via jndi. Always depend. Check in this url: http://www.javacommerce.com/displaypage.jsp?name=javamail.sqlid=18274

Re: How to send an Email with GWT to a specific Address?

2011-03-13 Thread wingdings
To send an email message, an app prepares a MimeMessage object, then sends it with the static method send() on the Transport class. The message is created using a JavaMail Session object. The Session and the Transport work with the App Engine Mail service without any additional configuration.

[gwt-contrib] Fix problem with user-agent based locale selection (issue1382803)

2011-03-13 Thread jat
Reviewers: jlabanca, Description: As mentioned at the end of issue 4228, the portion of the locale property provider which gets the value from the user agent is broken. I fixed the bug and tested it on several platforms, which also revealed another problem where the browsers supply the region

[gwt-contrib] Re: Fix bug on IE where onload events don't fire for IFrames. (issue1294801)

2011-03-13 Thread pdr
http://gwt-code-reviews.appspot.com/1294801/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] HasDataPresenter's SchedulerImpl coupling

2011-03-13 Thread Stephen Haberman
Hi, I was attempting to reuse HasDataPresenter to drive some stub versions of CellList/CellTable. I know HasDataPresenter is package private, but I'm perfectly fine accepting the risk of it changing, as if it's behavior/interface does change, then the behavior/interface of my stubs would likely