Re: NullPoniter when calling the DAO object (@Autowired) - GWT and Spring problem integration

2013-03-05 Thread Borja Gonzalez
Hi, i have tried to use: servlet-mapping servlet-namespringGwtRemoteServiceServlet/servlet-name url-pattern/GestionUserService/*/url-pattern /servlet-mapping or servlet-mapping servlet-namespringGwtRemoteServiceServlet/servlet-name url-pattern/userConsole/GestionUserService/*/url-pattern

Re: NullPoniter when calling the DAO object (@Autowired) - GWT and Spring problem integration

2013-03-05 Thread Thomas Broyer
On Tuesday, March 5, 2013 10:05:28 AM UTC+1, Borja Gonzalez wrote: Hi, i have tried to use: servlet-mapping servlet-namespringGwtRemoteServiceServlet/servlet-name url-pattern/GestionUserService/*/url-pattern /servlet-mapping or servlet-mapping

Re: NullPoniter when calling the DAO object (@Autowired) - GWT and Spring problem integration

2013-03-05 Thread Borja Gonzalez
I really don´t know... but now i have tried using this: servlet-mapping servlet-namespringGwtRemoteServiceServlet/servlet-name url-pattern/userConsole/GestionUserService/url-pattern /servlet-mapping and on my Service: @RemoteServiceRelativePath(GestionUserService) And i'm still getting

How to reset the tooltip while mouse moves over the same widget?

2013-03-05 Thread membersound
Hi, I have a quite big Widget, and I want to show dynamic tooltips (.setTitle()) onto it whenever the mouse comes to rest. Therefore registered MouseOverEvent, which works fine, but only one time! I have to leave the widget, and when I enter it again, the new tooltip is displayed. BUT I want

Re: How to reset the tooltip while mouse moves over the same widget?

2013-03-05 Thread Thomas Broyer
Unless you can set the title= on more specific inner elements, you'll have to use custom tooltips (e.g. using PopupPanel) rather than setTitle(). On Tuesday, March 5, 2013 10:29:49 AM UTC+1, membersound wrote: Hi, I have a quite big Widget, and I want to show dynamic tooltips

Re: NullPoniter when calling the DAO object (@Autowired) - GWT and Spring problem integration

2013-03-05 Thread Jens
Following the linked wiki page you should have servlet-mapping servlet-namespringGwtRemoteServiceServlet/servlet-name url-pattern/springGwtServices/*/url-pattern /servlet-mapping and @RemoteServiceRelativePath(springGwtServices/spring bean name) So in your case probably:

Re: NullPoniter when calling the DAO object (@Autowired) - GWT and Spring problem integration

2013-03-05 Thread Borja Gonzalez
OK, so i finally managed to get it working. This is my solution: servlet-mapping servlet-namespringGwtRemoteServiceServlet/servlet-name url-patternuserConsole/springGwtServices/*/url-pattern /servlet-mapping @RemoteServiceRelativePath(springGwtServices/GestionUserService) Thanks a lot

Re: How to reset the tooltip while mouse moves over the same widget?

2013-03-05 Thread Kody
No, I want to apply the tooltips dynamically on a canvas (or its containing shapes). Thus canvas is already most inner. Is it somehow possible to retrigger the hovering? I tried creating a simulated NativeEvent, but did not work. Am I missing something? NativeEvent event =

Re: asynchronous call back for client side method

2013-03-05 Thread karun
Hi Jen thanks for your reply. can you please provide an example. Regards karu n On Wednesday, February 27, 2013 2:44:40 PM UTC+5:30, Jens wrote: GWT has a generic callback interface that you can use as method parameter

Re: asynchronous call back for client side method

2013-03-05 Thread Jens
void asyncMethod(final CallbackSuccessType, FailureType callback) { //Some async work, could also be a simple Timer task or similar that only runs on the client. rpcservice.getData(new AsyncCallbackString, Throwable { void onSuccess(String result) { //Do what you need to do

How to catch ClickEvent on commit of EditTextCell?

2013-03-05 Thread membersound
Hi, I have a CellTable with EditTextCells. If I'm already in edit mode of an entry and click on another entry, I directly want it to also switch into edit mode. This is the default behaviour which I try to change: Default on any click outside a currently edited textcell is to commit the

Use ValueBox with EditTextCell in CellTable?

2013-03-05 Thread membersound
Hi, I'm already using EditTextCell in a CellTable. Is there anything I can wire together to use a ValueBox in there? If not how could I start to implement this on my own? I should I forget about it? My goal is to have auto parsing for the input edit boxes in my cell table. -- You received

MultiWordSuggestOracle with multiple values?

2013-03-05 Thread membersound
Hi, is the MultiWordSuggestOracle prepared to somehow being able to display not only one value, but eg a comma separated list of elements chosen fomr the suggest dropdown (facebook like)? Or would I have to extend this on my own? -- You received this message because you are subscribed to the

Re: GWT 2.5, Developer Mode, and _FieldSerializer errors

2013-03-05 Thread Patrick Tucker
I see similar exceptions just before getting an out of memory exception. Have you tried giving it more memory? On Monday, March 4, 2013 11:55:51 PM UTC-5, Neil Buesing wrote: I have upgraded to GWT 2.5 and get this error in development mode Caused by: java.lang.Error: Unresolved compilation

Re: MultiWordSuggestOracle with multiple values?

2013-03-05 Thread Andrea Boscolo
Something like... http://raibledesigns.com/rd/entry/creating_a_facebook_style_autocomplete ? I guess you simply have to define you own SuggestionDisplay and when you select an entry, add an inline label styled as you want just before the suggestbox. On Tuesday, March 5, 2013 3:22:03 PM UTC+1,

Re: NullPoniter when calling the DAO object (@Autowired) - GWT and Spring problem integration

2013-03-05 Thread Mathieu Lorber
Jens, are you sure of what you're saying ? The GWT services have to be servlets AFAIK, and are actually managed by the servlet container in the given wiki page. BTW, I'd *strongly* recommend to remove the spring4gwt dependency and understand what it does. That is to say :

Re: MultiWordSuggestOracle with multiple values?

2013-03-05 Thread Mathieu Lorber
[re-post but first is lost in space ?] If you want a facebook-like autocomplete (not sure to understand your initial need), you should not modify your existing Oracle nor extend the SuggestionDisplay. You have to extend the TextBox. And modify the SuggestionHandler probably. Good news, it's

Re: NullPoniter when calling the DAO object (@Autowired) - GWT and Spring problem integration

2013-03-05 Thread Jens
Jens, are you sure of what you're saying ? The GWT services have to be servlets AFAIK, and are actually managed by the servlet container in the given wiki page. Re-read point 2.) + 3.) of the wiki page. If the wiki page isn't wrong you only have to declare a name for your GWT-RPC service

Re: IE Anchor Issue

2013-03-05 Thread Lars
Ah very nice guys... Thanks for the replies. I guess I'm using the Anchor widget slightly outside its intended purpose (i.e. linking to another url). For some reason I didn't think the Label widget implemented HasClickHandlers. I will use a styled Label from now on for these. Thanks for the

Re: NullPoniter when calling the DAO object (@Autowired) - GWT and Spring problem integration

2013-03-05 Thread Mathieu Lorber
On Tuesday, March 5, 2013 4:33:43 PM UTC+1, Jens wrote: The only servlet you need in web.xml is the spring integration servlet. You're right, i wanted to go too fast... Actually spring4gwt does not use the method i talked about. And as you have to write spring beans, it's simpler to add

Is it possible to create screens at runtime?

2013-03-05 Thread thiago borges martins
Good afternoon, colleagues, I'm on a project where I need to create screens using smart-gwt, but the creation of the screens will be in runtime system. This is possible using Smart-gwt? I thank everyone's attention. -- You received this message because you are subscribed to the Google Groups

I need link

2013-03-05 Thread Crease
Hi, I´m developing an application and I want to do one link that when the user push over him then the browser open a new page in other tab, for example www.google.es but I don´t know do it, I don´t know what widget take Thanks. -- You received this message because you are subscribed to the

Re: I need link

2013-03-05 Thread Jens
in a new tab is something the user decides based on his browser settings. You cant force it. You can use Anchor to link to an external site. -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop

Unable to add SDK 2.5 to Eclipse

2013-03-05 Thread Juan Ignacio Garzón
Hi! I'm having problems while configuring the GWT App Engine in eclipse. I go to preferences - Google - App Engine - Add... and when I enter the directory, I got an error message Failed to initialize App Engine SDK at c:\java\gwt-2.5.0 In Eclipse's error log I see the following stacktrace:

Migrating our application from GWT 2.0 to GWT 2.5

2013-03-05 Thread guduguntla . sandeep
Our apllication is developed on GWT 2.0, and recently we started migrating it to GWT 2.5, could you please let me know the components that we need to migrate also please let me know the various technical challanges and constraints that we need to concentrate on. Thank you in advance. -- You

gwt-log servlet configuration parameter 'symbolMaps

2013-03-05 Thread Alexis Thésée
Hello, i wan't to use gwt-log in my application, because i can have the client log on the server. I have followed that page to use it https://code.google.com/p/gwt-log/wiki/GettingStarted#Enable_the_remote_logging_option_%28disabled_by_default%29 i deploy my application with the -deploy

Re: Unable to add SDK 2.5 to Eclipse

2013-03-05 Thread Thomas Broyer
You have to go to Google → Web Toolkit, not App Engine. On Tuesday, March 5, 2013 4:13:18 PM UTC+1, Juan Ignacio Garzón wrote: Hi! I'm having problems while configuring the GWT App Engine in eclipse. I go to preferences - Google - App Engine - Add... and when I enter the directory, I got

Re: I need link

2013-03-05 Thread Hilco Wijbenga
On 5 March 2013 08:03, Crease creaseinv...@gmail.com wrote: I´m developing an application and I want to do one link that when the user push over him then the browser open a new page in other tab, for example www.google.es but I don´t know do it, I don´t know what widget take You are probably

Slider for Mobiles and Tablets in GWT

2013-03-05 Thread Imy
Hei there! I got a project in GWT 2.4 and I really need a Slider that in a web application can also work properly on a mobile or tablet, say android2.2.2 I saw from the showcase that the SmartGWT slider works OK, however all my interface is in GWT and I read that they don't mix well. Also

Re: RPC call in Activity onStop()

2013-03-05 Thread yves
Hi, Finally I didn't succeed to make an RPC call from the overridden AbstractActivity.onStop(). Actually the GWT doc says about onStop() : Called when the Activity's widget has been removed from view. I guess that all the RPC mechanisms is already destroyed because the server never get called.

Re: Is it possible to create screens at runtime?

2013-03-05 Thread yves
Unless I don't understand your question, this is THE main GWT feature, thus smart-gwt too ! Yves -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: RPC call in Activity onStop()

2013-03-05 Thread Milan Cvejic
Hey Yves, maybe you can hook and listen on PlaceChangeEvent. That event actually calls onStop(). So if that event is fired than you can execute your RPC call. Best, Milan On Tue, Mar 5, 2013 at 8:10 PM, yves yves.ko...@gmail.com wrote: Hi, Finally I didn't succeed to make an RPC call from

Re: Is it possible to create screens at runtime?

2013-03-05 Thread Thiago borges martins
I will explain better. My application will have a screen that has the functionality to create a new screen with fields, business rules (insert, update and delete) and searches in the database. It's as if I've been developing the screen with fields, combobox, checkbox and grid's that will

Re: Slider for Mobiles and Tablets in GWT

2013-03-05 Thread Ignacio Baca Moreno-Torres
We use this one in our project http://code.google.com/p/gwt-slider-bar/ Its simple and easy to customise. You can't drag the slider in mobile applications, but is usable. On Tue, Mar 5, 2013 at 6:04 PM, Imy timea.turd...@gmail.com wrote: Hei there! I got a project in GWT 2.4 and I really need

Re: Is it possible to create screens at runtime?

2013-03-05 Thread Sanjiv Jivan
Hi Thiago, With SmartGWT (Pro and above), you can save screen definitions in XML and load them at runtime: http://www.smartclient.com/smartgwtee/javadoc/com/smartgwt/client/rpc/RPCManager.html#loadScreen(java.lang.String , com.smartgwt.client.rpc.LoadScreenCallback, java.lang.String[]) So you

Re: Is it possible to create screens at runtime?

2013-03-05 Thread Thiago borges martins
Hum understand, I had thought of something like that, but I was in doubt because GWT (smartgwt) and compiled to javascript and have part of the RF (RequestFactory), but I've thought a one implementation. Without wanting to abuse his good vontante you have an example of a loading screen. 2013/3/5

Re: RPC call in Activity onStop()

2013-03-05 Thread yves
The use case is when one is closing the browser or the tab or when navigating to another url, thus really quitting the GWT application, not just changing Place. I found that apparently in this case the ActivityManager.onPlaceChange(PlaceChangeEvent event) seems to be never called. And then

Re: Is it possible to create screens at runtime?

2013-03-05 Thread Sanjiv Jivan
There are samples of using XML screen definitions in the SmartGWT EE Showcase under the folder Component XML, but you have to download a 4.0 build to get them: http://smartclient.com/builds The Component XML overview explains how to provide dynamic Component XML that's stored in a DB - see

UiBinder, i18n and attributes

2013-03-05 Thread Tomek Kańka
Hi. I use ui:msg to internationalize my app, but I don't know what to do with widget attributes. For example, g:ToggleButton title=some text to i18n/. Any ideas, beside setting attributes in constructor? -- Tomek -- You received this message because you are subscribed to the Google Groups

Re: UiBinder, i18n and attributes

2013-03-05 Thread Tomek Kańka
W dniu wtorek, 5 marca 2013 22:46:07 UTC+1 użytkownik Tomek Kańka napisał: Hi. I use ui:msg to internationalize my app, but I don't know what to do with widget attributes. For example, g:ToggleButton title=some text to i18n/. Ha! What a great feeling, when you ask good question and find

Re: UiBinder, i18n and attributes

2013-03-05 Thread Tomek Kańka
Maybe I'd start some blog:). 2nd answer to myself (incredible, how I missed it) ui:attribute/ Thanks for your silent support:). -- Tomek -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving

How can I modify context-param values (from web.xml) on my development system only

2013-03-05 Thread Rob Tanner
Hi, I am trying to use Tomcat rather than the built in Jetty server. I've followed these instructions found at https://developers.google.com/eclipse/docs/faq#gwt_in_eclipse_for_java_ee: How do I use the plugin with a GWT Dynamic Web project in Eclipse for Java EE? It's easy to develop and

Re: GWTCanvas image distortion

2013-03-05 Thread Juanita Bingham
See known issue 7297 - https://code.google.com/p/google-web-toolkit/issues/detail?id=7297 I had a similar problem. The work around here resolved it. - Juanita -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this

[gwt-contrib] Change in gwt[master]: Introduces a common SerializableThrowable and refactors Stac...

2013-03-05 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: Introduces a common SerializableThrowable and refactors StackTraceDeobfuscator as public API. .. Patch Set 2: (1 comment)

[gwt-contrib] Change in gwt[master]: Allow LogConfiguration to be used in non-GWT environments (e...

2013-03-05 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Allow LogConfiguration to be used in non-GWT environments (e.g. JRE tests) .. Patch Set 2: (1 comment)

[gwt-contrib] Change in gwt[master]: bump pom.xml versions to 2.5.1

2013-03-05 Thread Matthew Dempsky
Matthew Dempsky has uploaded a new change for review. https://gwt-review.googlesource.com/2140 Change subject: bump pom.xml versions to 2.5.1 .. bump pom.xml versions to 2.5.1 Change-Id:

[gwt-contrib] Change in gwt[master]: make unsink event work correctly in widget

2013-03-05 Thread Goktug Gokdogan
Goktug Gokdogan has abandoned this change. Change subject: make unsink event work correctly in widget .. Abandoned Submitted. Thanks! -- To view, visit https://gwt-review.googlesource.com/1950 To unsubscribe, visit

[gwt-contrib] Change in gwt[master]: rename RpcSuiteNoBrowser to RpcJreSuite

2013-03-05 Thread Matthew Dempsky
Matthew Dempsky has uploaded a new change for review. https://gwt-review.googlesource.com/2141 Change subject: rename RpcSuiteNoBrowser to RpcJreSuite .. rename RpcSuiteNoBrowser to RpcJreSuite Change-Id:

[gwt-contrib] Change in gwt[master]: rename RpcSuiteNoBrowser to RpcJreSuite

2013-03-05 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: rename RpcSuiteNoBrowser to RpcJreSuite .. Patch Set 1: Code-Review+1 -- To view, visit https://gwt-review.googlesource.com/2141 To unsubscribe, visit

[gwt-contrib] Change in gwt[master]: Allow LogConfiguration to be used in non-GWT environments (e...

2013-03-05 Thread Matthew Dempsky
Matthew Dempsky has posted comments on this change. Change subject: Allow LogConfiguration to be used in non-GWT environments (e.g. JRE tests) .. Patch Set 2: (1 comment)

[gwt-contrib] Change in gwt[master]: rename RpcSuiteNoBrowser to RpcJreSuite

2013-03-05 Thread Matthew Dempsky
Hello Goktug Gokdogan, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/2141 to look at the new patch set (#2). Change subject: rename RpcSuiteNoBrowser to RpcJreSuite .. rename

[gwt-contrib] Change in gwt[master]: bump pom.xml versions to 2.5.1

2013-03-05 Thread Brian Slesinsky
Brian Slesinsky has posted comments on this change. Change subject: bump pom.xml versions to 2.5.1 .. Patch Set 1: Verified+1 -- To view, visit https://gwt-review.googlesource.com/2140 To unsubscribe, visit

[gwt-contrib] Change in gwt[master]: rename RpcSuiteNoBrowser to RpcJreSuite

2013-03-05 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: rename RpcSuiteNoBrowser to RpcJreSuite .. Patch Set 2: Code-Review+1 -- To view, visit https://gwt-review.googlesource.com/2141 To unsubscribe, visit

[gwt-contrib] Change in gwt[master]: Rename RpcSuiteNoBrowser to RpcJreSuite

2013-03-05 Thread Matthew Dempsky
Hello Goktug Gokdogan, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/2141 to look at the new patch set (#3). Change subject: Rename RpcSuiteNoBrowser to RpcJreSuite .. Rename

[gwt-contrib] Change in gwt[master]: Rename RpcSuiteNoBrowser to RpcJreSuite

2013-03-05 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Rename RpcSuiteNoBrowser to RpcJreSuite .. Patch Set 3: Code-Review+1 -- To view, visit https://gwt-review.googlesource.com/2141 To unsubscribe, visit

[gwt-contrib] Change in gwt[master]: bump pom.xml versions to 2.5.1

2013-03-05 Thread Matthew Dempsky
Matthew Dempsky has abandoned this change. Change subject: bump pom.xml versions to 2.5.1 .. Abandoned Submitted. -- To view, visit https://gwt-review.googlesource.com/2140 To unsubscribe, visit

[gwt-contrib] Change in gwt[master]: Introduces a common SerializableThrowable as public API.

2013-03-05 Thread Goktug Gokdogan
Goktug Gokdogan has uploaded a new change for review. https://gwt-review.googlesource.com/2160 Change subject: Introduces a common SerializableThrowable as public API. .. Introduces a common SerializableThrowable as public

[gwt-contrib] Change in gwt[master]: Fix a race condition in the GWTTestCase runner.

2013-03-05 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Fix a race condition in the GWTTestCase runner. .. Patch Set 1: It is hard to follow what is going on. Can we pair tomorrow? I also wonder if anybody using

[gwt-contrib] Change in gwt[master]: Introduces a common SerializableThrowable as public API.

2013-03-05 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Introduces a common SerializableThrowable as public API. .. Patch Set 1: Let me know if anybody feels strongly about this approach (ie.

[gwt-contrib] Change in gwt[master]: Adds stack traces to printStackTrace in java/lang/Throwable ...

2013-03-05 Thread Goktug Gokdogan
Goktug Gokdogan has uploaded a new patch set (#2). Change subject: Adds stack traces to printStackTrace in java/lang/Throwable emulation. .. Adds stack traces to printStackTrace in java/lang/Throwable emulation. Change-Id: