Re: maven gwt module depends on a external jar

2012-05-22 Thread tong123123
I even try to add compileSourcesArtifacts artifacthk.gov.ehr.service.tch.als:als-admin-viewer-core/artifact !-- groupId:artifactId -- /compileSourcesArtifacts in configuration section of gwt-maven-plugin, but it still does not help!! I see this method in

Re: maven gwt module depends on a external jar

2012-05-22 Thread Thomas Broyer
On Tuesday, May 22, 2012 9:18:06 AM UTC+2, tong123123 wrote: I even try to add compileSourcesArtifacts artifacthk.gov.ehr.service.tch.als:als-admin-viewer-core/artifact !-- groupId:artifactId -- /compileSourcesArtifacts in configuration section of gwt-maven-plugin, but it still does

Re: Celltable scrollbar

2012-05-22 Thread kretel
Did you have a look at this: http://gwt.google.com/samples/Showcase/Showcase.html#!CwCellList ? You can also see the source how it is implemented. Thanks, Krzysztof On Tuesday, May 22, 2012 9:50:59 AM UTC+1, Ashu wrote: Hi, Is there any posibilty to add scrollbar to cellist currently

NullPointerException in generated PlaceHistoryMapperImpl (with factory)- how/when to setFactory (Problem only in hosted mode)

2012-05-22 Thread tanteanni
I am using PlaceHistoryMapperWithFactory as suggested herehttp://stackoverflow.com/questions/10089964/places-that-share-all-but-prefix-or-how-to-use-placehistorymapperwithfactory. The factory is set within my ClientModule (gin): @Provides @Singleton @Inject public final

Celltable scrollbar

2012-05-22 Thread Ashu
Hi, Is there any posibilty to add scrollbar to cellist currently i am using pager but i have a reuirement that to add scroll bar. Please let me know is there any way to add this? Thanks in advance. -- You received this message because you are subscribed to the Google Groups Google Web

Re: NullPointerException in generated PlaceHistoryMapperImpl (with factory)- how/when to setFactory (Problem only in hosted mode)

2012-05-22 Thread Thomas Broyer
On Tuesday, May 22, 2012 10:55:15 AM UTC+2, tanteanni wrote: I am using PlaceHistoryMapperWithFactory as suggested herehttp://stackoverflow.com/questions/10089964/places-that-share-all-but-prefix-or-how-to-use-placehistorymapperwithfactory. The factory is set within my ClientModule

item with hover menus

2012-05-22 Thread Matthew Pocock
Hi, I'm trying to build a fairly generic widget that manages lists of named items with a menu of actions for each. I would like the widgets to display using their label, running on from one-another in a FlowLayout. When the user hovers over one of these items a menu should appear to manipulate it

Re: NullPointerException in generated PlaceHistoryMapperImpl (with factory)- how/when to setFactory (Problem only in hosted mode)

2012-05-22 Thread Thomas Broyer
On Tuesday, May 22, 2012 11:41:14 AM UTC+2, tanteanni wrote: thx thomas for fast reply, the problem is indeed that two instances are created one PlaceHistoryMapperWithFactoryTokenizerFactory instance and one instances where constructors inject AppPlaceHistoryMapper (this one has null

Re: NullPointerException in generated PlaceHistoryMapperImpl (with factory)- how/when to setFactory (Problem only in hosted mode)

2012-05-22 Thread tanteanni
thx! it works On Tuesday, 22 May 2012 11:58:39 UTC+2, Thomas Broyer wrote: On Tuesday, May 22, 2012 11:41:14 AM UTC+2, tanteanni wrote: thx thomas for fast reply, the problem is indeed that two instances are created one PlaceHistoryMapperWithFactoryTokenizerFactory instance and one

Split UIBinder File

2012-05-22 Thread Markandayarushi Pamu
Hi All, I have one requirement in GWT UIBinder. I want to split the UIBinder file, like include in jsp. I want to add another uibinder into this. Plz suggest how to add.. Rushi -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

Re: item with hover menus

2012-05-22 Thread Paul Robinson
You can add a MouseOverHandler to find out when the mouse becomes over a widget, and then show a pop-up menu inside the handler. If each item can have a different menu, then maybe you need the handler to ask the item for its menu. If you're using widgets that don't have an addMouseOverHandler

Re: Split UIBinder File

2012-05-22 Thread Joseph Lust
Just make several widgets. Each widget can have its own UiBinder file. Then you can combine them at a higher level like: #UiBinder file ... myWidget1/myWidget1 myWidget2/myWidget2 myWidget3/myWidget3 ... Can you explain why you need the file broken out? Perhaps a messages (i18n)

GWT OAuth2 + Chrome Extension

2012-05-22 Thread ustakraharez
Dear All, I set up a very simple sample http://code.google.com/p/gwt-oauth2/ authentication here: http://www.geogebra.org/web/web_gui/ Just an alert answer, click to login to google. However, I can't succeed to do this in the same packaged .crx, I got this error: Invalid parameter value

Re: Is it possible to convert ImageResource to ImageElement?

2012-05-22 Thread Robert Moore
Christopher christopher.oestlund@... writes: From my experiments, that last example wont work. final Image image = new Image(mapResources.map()); That line makes GWT try to use a sprite sheet, making the img use style=background: to display the image. Such an Image won't be shown when

DateTimeFormat: Return the localized name of a month given you have an int.

2012-05-22 Thread Fille
I have read the documentation extensively, but i cant get this working. I have an *int month = 7. *I would like to return just the name of the month. Ex: DateTimeFormat.getFormat(MM).parse(month) --- Jul or July (localized) Is this possible? * * -- You received this message because you

Re: Timing issue when using JSNI in gwt.

2012-05-22 Thread Ali
Hi Joseph, Have you tried using the Dictionary for this. I am having the same issues again using Dictionary. So using Dictionary, we don't have to call JSNI to read the map in and we directly use the javascript variable name to get a Dictionary object. I tried this and again running it in dev

Re: DateTimeFormat: Return the localized name of a month given you have an int.

2012-05-22 Thread Jim Douglas
http://google-web-toolkit.googlecode.com/svn/javadoc/2.4/com/google/gwt/i18n/client/DateTimeFormat.html Text or Number 3 or more, use text, otherwise use number. (e.g. M produces 1, MM produces 01, MMM produces Jan, and produces January. Some pattern letters also treat a count of 5

Re: DateTimeFormat: Return the localized name of a month given you have an int.

2012-05-22 Thread Thomas Broyer
On Tuesday, May 22, 2012 6:12:30 PM UTC+2, Jim Douglas wrote: http://google-web-toolkit.googlecode.com/svn/javadoc/2.4/com/google/gwt/i18n/client/DateTimeFormat.html Text or Number 3 or more, use text, otherwise use number. (e.g. M produces 1, MM produces 01, MMM produces Jan, and

Re: DateTimeFormat: Return the localized name of a month given you have an int.

2012-05-22 Thread Fille
Thanks for your replies. I will test DefaultDateTimeFormatInfo() Den tisdagen den 22:e maj 2012 kl. 18:31:13 UTC+2 skrev Thomas Broyer: On Tuesday, May 22, 2012 6:12:30 PM UTC+2, Jim Douglas wrote:

Google Map API Weather

2012-05-22 Thread Vrushali Patil
Hi, I want to add weather layer to google map. I am using Eclipse n Java programming. But the API I got from gwt-maps group does not contain weather library. Can somebody give me the right link to download. For using the weather layer, I need to have weather library in gwt-map WAR, which I

Re: Timing issue when using JSNI in gwt.

2012-05-22 Thread Joseph Lust
It worked fine more me in hosted mode, using the code snippet for Dictionary included earlier. However, do note that *__gwt_ObjectId *is added to the set when using Hosted Mode. You should be able to ignore it. Sincerely, Joseph -- You received this message because you are subscribed to the

Read in binary file into byte[] ?

2012-05-22 Thread Carsten
Hi, is it possible to read in a binary file in my GWT Java-code and convert it into a byte[] ? Thanks! Carsten -- 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: Read in binary file into byte[] ?

2012-05-22 Thread Jim Douglas
Not in GWT proper, and not reliably in all browsers. Start your reading here: http://www.google.com/search?q=javascript+file+api On May 22, 12:42 pm, Carsten carsten.schm...@googlemail.com wrote: Hi, is it possible to read in a binary file in my GWT Java-code and convert it into a byte[] ?

[gwt-contrib] Re: Add Integer.TYPE, etc. (issue1528806)

2012-05-22 Thread t . broyer
http://gwt-code-reviews.appspot.com/1528806/diff/8001/user/super/com/google/gwt/emul/java/lang/Double.java File user/super/com/google/gwt/emul/java/lang/Double.java (right): http://gwt-code-reviews.appspot.com/1528806/diff/8001/user/super/com/google/gwt/emul/java/lang/Double.java#newcode36

[gwt-contrib] Revert GWT support for Chrome Frame (issue1713803)

2012-05-22 Thread t . broyer
Reviewers: cromwellian, Description: Revert GWT support for Chrome Frame This reverts commit r10250. Fixes issue 6665. Please review this at http://gwt-code-reviews.appspot.com/1713803/ Affected files: M user/src/com/google/gwt/useragent/rebind/UserAgentPropertyGenerator.java Index:

[gwt-contrib] Add white-space support to Style (issue1714803)

2012-05-22 Thread tuckerpmt
Reviewers: , Please review this at http://gwt-code-reviews.appspot.com/1714803/ Affected files: user/src/com/google/gwt/dom/client/Style.java user/src/com/google/gwt/user/client/ui/Anchor.java user/src/com/google/gwt/user/client/ui/CheckBox.java --

[gwt-contrib] Removing uses of deprecated Tree code in GWT showcase sample and TreeExample. (issue1712804)

2012-05-22 Thread jlabanca
Reviewers: skybrian, Description: Removing uses of deprecated Tree code in GWT showcase sample and TreeExample. Please review this at http://gwt-code-reviews.appspot.com/1712804/ Affected files: M

[gwt-contrib] Re: Removing uses of deprecated Tree code in GWT showcase sample and TreeExample. (issue1712804)

2012-05-22 Thread t . broyer
http://gwt-code-reviews.appspot.com/1712804/diff/1/samples/showcase/src/com/google/gwt/sample/showcase/client/content/lists/CwStackPanel.java File samples/showcase/src/com/google/gwt/sample/showcase/client/content/lists/CwStackPanel.java (right):

[gwt-contrib] Re: Removing uses of deprecated Tree code in GWT showcase sample and TreeExample. (issue1712804)

2012-05-22 Thread jlabanca
http://gwt-code-reviews.appspot.com/1712804/diff/1/samples/showcase/src/com/google/gwt/sample/showcase/client/content/lists/CwStackPanel.java File samples/showcase/src/com/google/gwt/sample/showcase/client/content/lists/CwStackPanel.java (right):

[gwt-contrib] Re: Add white-space support to Style (issue1714803)

2012-05-22 Thread tuckerpmt
http://gwt-code-reviews.appspot.com/1714803/diff/1/user/src/com/google/gwt/user/client/ui/Anchor.java File user/src/com/google/gwt/user/client/ui/Anchor.java (right): http://gwt-code-reviews.appspot.com/1714803/diff/1/user/src/com/google/gwt/user/client/ui/Anchor.java#newcode87

[gwt-contrib] Re: Fix for issue 5952: RequestContext#isChanged. (issue1601806)

2012-05-22 Thread rdayal
Just a minor nit; otherwise LGTM. http://gwt-code-reviews.appspot.com/1601806/diff/40003/user/src/com/google/web/bindery/requestfactory/shared/impl/AbstractRequestContext.java File user/src/com/google/web/bindery/requestfactory/shared/impl/AbstractRequestContext.java (right):

[gwt-contrib] Re: DefaultProxyStore violated ProxyStore#nextId contract. (issue1622803)

2012-05-22 Thread rdayal
LGTM. Going to run this back through the battery of tests. http://gwt-code-reviews.appspot.com/1622803/diff/6001/user/test/com/google/web/bindery/requestfactory/server/SimpleFoo.java File user/test/com/google/web/bindery/requestfactory/server/SimpleFoo.java (left):

[gwt-contrib] Re: Add StyleInjector.flush (issue1614806)

2012-05-22 Thread rdayal
Ping. http://gwt-code-reviews.appspot.com/1614806/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: DefaultProxyStore violated ProxyStore#nextId contract. (issue1622803)

2012-05-22 Thread rdayal
Passes the internal set of tests now. Yay! Skybrian's going to do the internal review. http://gwt-code-reviews.appspot.com/1622803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Filter no longer referenced symbols from symbol table. (issue1711804)

2012-05-22 Thread acleung
Reviewers: cromwellian, Description: Filter no longer referenced symbols from symbol table. Please review this at http://gwt-code-reviews.appspot.com/1711804/ Affected files: M dev/core/src/com/google/gwt/dev/jjs/JavaToJavaScriptCompiler.java A

[gwt-contrib] Re: Fix issue 6710: entities referenced from list of value proxies (issue1646803)

2012-05-22 Thread rdayal
https://gwt-code-reviews.appspot.com/1646803/diff/1/user/src/com/google/web/bindery/requestfactory/server/Resolver.java File user/src/com/google/web/bindery/requestfactory/server/Resolver.java (right):

[gwt-contrib] Re: Fix initialization of non-final fields (issue1618807)

2012-05-22 Thread rdayal
Ping (ray). http://gwt-code-reviews.appspot.com/1618807/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Added style getters to UiRenderers (issue1700803)

2012-05-22 Thread rdayal
Great job, and thanks for doing this. Let's go one more round. Also, would you be willing to update the UIBinder docs? :D :D http://gwt-code-reviews.appspot.com/1700803/diff/1/user/src/com/google/gwt/uibinder/rebind/UiBinderWriter.java File