Re: Debugging is terribly slow

2012-06-20 Thread Thomas Broyer
On Wednesday, June 20, 2012 6:41:36 AM UTC+2, Magnus wrote: Am Dienstag, 19. Juni 2012 17:19:26 UTC+2 schrieb Thomas Broyer: Have you tried SuperDevMode? Experimental and requires a bleeding-edge GWT version, if it helps being productive then it's probably worth the try. Not yet.

Re: IntegerBox not restricting input to integers in GWT 2.4.0

2012-06-20 Thread Craig Mitchell
I implemented a filter that stop users entering the wrong thing. I figured if TextBox.setMaxLength does it, then why not. However, as Thomas pointed out, it's hard to do properly. I ended up allowing the invalid input and then removing it in a scheduleDeferred command. Not ideal as the user

symbolMap files and packaging gwt project

2012-06-20 Thread Ali Thabet
Hello, My problem is that the war of my GWT project has a large size. So I want, if possible, delete unused files from the war. There are several symbolMap files in WEB-INF/deploy/my_project_name/symbolMapps/ (the same number of permutations), i know that they are useful fo deobfuscation, but in

Re: symbolMap files and packaging gwt project

2012-06-20 Thread Thomas Broyer
On Wednesday, June 20, 2012 4:59:56 PM UTC+2, aliwa wrote: Hello, My problem is that the war of my GWT project has a large size. So I want, if possible, delete unused files from the war. There are several symbolMap files in WEB-INF/deploy/my_project_name/symbolMapps/ (the same number of

Re: RequestFactory proxies stuck in RequestContext edit context

2012-06-20 Thread Alex opn
I know it's a pretty old thread but I just stumbled upon http://code.google.com/p/google-web-toolkit/issues/detail?id=6685 in my code. Are there any news about a patch for this or other suggestions how to work around this except the ones in the bug report? I just began to really love the

Re: RequestFactory proxies stuck in RequestContext edit context

2012-06-20 Thread Thomas Broyer
On Wednesday, June 20, 2012 5:54:53 PM UTC+2, Alex opn wrote: I know it's a pretty old thread but I just stumbled upon http://code.google.com/p/google-web-toolkit/issues/detail?id=6685 in my code. Are there any news about a patch for this or other suggestions how to work around this

Web Hosting

2012-06-20 Thread aby paul
Hi Friends I created one website with MySQL which way i host this site? Regards Aby Paul -- 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

Re: RequestFactory proxies stuck in RequestContext edit context

2012-06-20 Thread Alex opn
Alright, thanks for the update on this! I think then I'll have to live with that one for the moment, because I don't feel like I could fix this myself somehow. Am Mittwoch, 20. Juni 2012 18:05:46 UTC+2 schrieb Thomas Broyer: On Wednesday, June 20, 2012 5:54:53 PM UTC+2, Alex opn wrote: I

can we use load-on-startup for serviceImpl

2012-06-20 Thread karun kumar
Hi i have implemented very simple serviceImple i.e RPC class as shown below: @SuppressWarnings(serial) * public* *class* SlimLookUpImpl *extends* RemoteServiceServlet { *public* *void* *SlimLookUpImpl() * { System.*out*.println(console output while startup ); } } I have added this

refresh datastore

2012-06-20 Thread Pablo Turcios
Good afternoon everyone. I could help, I have a gwt project and make the time to modify or create a record can be updated dynamically in the project. In datastore updated, but the project did not run again until the application. Please help. regards -- You received this message because you are

Disabling selection in CellTable/DataGrid

2012-06-20 Thread Mike Dee
At first I thought this would be easy to do. But now I'm not sure about what I even want to do. Maybe I should explain. I simply want to have a DataGrid and: 1) not have the rows change color when the mouse hovers over them 2) not have the cell selected when I click on one. At first I

Re: XmlAdapter compile error

2012-06-20 Thread shawnjohnson
I am having this issue as well. The annotations are in models in our 'shared' package - shared between client and server. Anyone know what I should change to resolve this? On Thursday, December 30, 2010 1:38:27 PM UTC-5, Andrea Boscolo wrote: I suppose you are trying to use that annotation

Re: can we use load-on-startup for serviceImpl

2012-06-20 Thread Shawn Brown
my question here is can we do load-on-startup for this servlet. currently servlet is not loading on startup. How do you know?? ;^) public void SlimLookUpImpl() is a method that never gets called. Try one of these: @Override public void init() throws ServletException { } private

Re: Problem installign gwt in eclipse

2012-06-20 Thread Rob
Hi, Draft post: - In this post, we're going to take a look at how we can work with GWT and Maven when using Eclipse's Integrated Development Environment (IDE). So we'll need to: 1. Install the Google Plugin for Eclipse 2. Install the Maven Integration for Eclipse plugin 3. Install

Re: GWT, SmartGWT, Google Visualization Help

2012-06-20 Thread Rob
Hi, Browse the gwt-cx source: http://code.google.com/p/gwt-cx/ it has several wrappers and examples. also: - http://uptick.com.au/content/smartgwt-and-fusioncharts and take a look at gwt-highcharts: - http://www.moxiegroup.com/moxieapps/gwt-highcharts/ Cheers Rob -- You received this

Re: JAVA Generics with ValueProxy

2012-06-20 Thread tzhotmail
Thanks Alexandre , but that did not work as well On Tuesday, 19 June 2012 11:56:18 UTC-4, Alexandre Ardhuin wrote: The value attribute in @ProxyForName should be com.vo.GenericTreeNode instead of com.vo.GenericTreeNodeAccount Alexandre 2012/6/19 tzhotmail mwakat...@gmail.com Please

Re: GWT Hibernate integration EROR : Exception while dispatching incoming RPC call

2012-06-20 Thread Rob
Hi, This post make help: http://uptick.com.au/content/working-gwt-jpa-hibernate-and-hsqldb Cheers Rob Kiahu.com -- 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: Documents on GWT

2012-06-20 Thread Rob
Hi, This post may help: - http://uptick.com.au/content/working-gwt-jpa-hibernate-and-hsqldb also: - http://www.datanucleus.org/products/datanucleus/guides/jpa/tutorial.html Cheers Rob Kiahu.com -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: XmlAdapter compile error

2012-06-20 Thread Andrea Boscolo
Such annotations are not GWT compatible (i.e., they are not known to the GWT emulated JRE and definitely cannot be compiled in js, even providing the relative sources - that I think they can be found in jaxb-api-src.jar inside the jaxb distribution). To allow jaxb annotations (and annotations

Re: GWT Hibernate integration EROR : Exception while dispatching incoming RPC call

2012-06-20 Thread Rob Whiteside
Looks like a classpath problem. I don't think you have all your hibernate jars in place. Do you have a slf4j-api in your WEB-INF/lib? On Wednesday, June 13, 2012 12:17:17 AM UTC-7, Rahul Gamit wrote: Hello i have followed

Using EntityProxyId in a service call

2012-06-20 Thread Rob Whiteside
I am using RequestFactory to fetch data from the server and have came across a situation that I can't find an answer to: On the client I have an EntityProxyId for a proxy that I want to fetch. Normally, I'd just do a find and off it goes to the server. Then, my Locator's find gets called,

Re: JAVA Generics with ValueProxy

2012-06-20 Thread Ashwin Desikan
On your value proxy add the following annotation to the interface @SuppressWarnings(requestfactory) Sent from my iPhone On Jun 21, 2012, at 3:31 AM, tzhotmail mwakat...@gmail.com wrote: Thanks Alexandre , but that did not work as well On Tuesday, 19 June 2012 11:56:18 UTC-4, Alexandre

Re: can we use load-on-startup for serviceImpl

2012-06-20 Thread karun
Hi Shawn, Thanks for reply. after starting the tomcat i didnt find the System.out.println message in console/logs of tomcat. Thanks karun On Thursday, June 21, 2012 3:03:55 AM UTC+5:30, Shawn wrote: my question here is can we do load-on-startup for this servlet. currently

Re: how to set the row color of CellTable based on values in a column

2012-06-20 Thread tong123123
I found another related problem, as shown in the attachment, if the row is highlighted, the font color is white, which is difficult to see under yellow background color, how to change the color property when the row is selected? On Wednesday, June 20, 2012 6:36:49 PM UTC+8, tong123123 wrote:

Re: how to set the row color of CellTable based on values in a column

2012-06-20 Thread tong123123
the problem becomes very complicated, as the row background color depends on a column value, but when the row is selected, the font color is white, so if the background color is yellow as attaced and when the row is highlighted, the font is in white color and so difficult to see. But the worst

Re: [gwt-contrib] tests

2012-06-20 Thread John Tamplin
On Wed, Jun 20, 2012 at 6:48 AM, Eric Ayers zun...@google.com wrote: Now, the problem with diagnosing this is that the file is set to be deleted on exit. So after the program exits, you can't see how ridiculously huge the file might have been. To test that theory, you could try commenting

[gwt-contrib] Fix requestfactory test errors, and compilation failures in dev/compile.test resulting from the ... (issue1743808)

2012-06-20 Thread rdayal
Reviewers: tbroyer, skybrian, Description: Fix requestfactory test errors, and compilation failures in dev/compile.test resulting from the unbund ling of streamhtmlparser. Please review this at http://gwt-code-reviews.appspot.com/1743808/ Affected files: M dev/build.xml M

[gwt-contrib] Increase heap size for testing to prevent GC thrashing and OOMs when running usr/BigIntegerSuite. (issue1750803)

2012-06-20 Thread rdayal
Reviewers: skybrian, Description: Increase heap size for testing to prevent GC thrashing and OOMs when running usr/BigIntegerSuite. Please review this at http://gwt-code-reviews.appspot.com/1750803/ Affected files: M common.ant.xml Index: common.ant.xml

[gwt-contrib] Re: Increase heap size for testing to prevent GC thrashing and OOMs when running usr/BigIntegerSuite. (issue1750803)

2012-06-20 Thread rdayal
http://gwt-code-reviews.appspot.com/1750803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Added ElementType to ConstraintDescriptors and ConstraintViolations. Used ElementType to handle ... (issue1746803)

2012-06-20 Thread nchalko
http://gwt-code-reviews.appspot.com/1746803/diff/6001/user/src/com/google/gwt/validation/client/impl/ConstraintViolationImpl.java File user/src/com/google/gwt/validation/client/impl/ConstraintViolationImpl.java (right):

[gwt-contrib] Re: Increase heap size for testing to prevent GC thrashing and OOMs when running usr/BigIntegerSuite. (issue1750803)

2012-06-20 Thread skybrian
LGTM http://gwt-code-reviews.appspot.com/1750803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Extracted constant strings to the constructor, that allow translation to be provided from the ou... (issue1739803)

2012-06-20 Thread jlabanca
committed as r11095 http://gwt-code-reviews.appspot.com/1739803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Use Node.contains in IE9/Webkit for isOrHasChild (issue1725808)

2012-06-20 Thread jlabanca
LGTM I'm running tests and committing this now. http://gwt-code-reviews.appspot.com/1725808/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Added 5 missing tests to the TCK test suite coverage. (issue1744804)

2012-06-20 Thread idol
Reviewers: Nick Chalko, Description: Added 5 missing tests to the TCK test suite coverage. Please review this at http://gwt-code-reviews.appspot.com/1744804/ Affected files: M user/test/com/google/gwt/validation/tck/ConstraintCompositionGwtSuite.java M

[gwt-contrib] Re: Added 5 missing tests to the TCK test suite coverage. (issue1744804)

2012-06-20 Thread nchalko
LGTM http://gwt-code-reviews.appspot.com/1744804/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fix requestfactory test errors, and compilation failures in dev/compile.test resulting from the ... (issue1743808)

2012-06-20 Thread t . broyer
LGTM http://gwt-code-reviews.appspot.com/1743808/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Move test Messages files from client to shared; was missed in r10061. This was causing I18NSuite... (issue1752803)

2012-06-20 Thread rdayal
Reviewers: jat, Description: Move test Messages files from client to shared; was missed in r10061. This was causing I18NSuite to fail. Please review this at http://gwt-code-reviews.appspot.com/1752803/ Affected files: D

[gwt-contrib] Re: Move test Messages files from client to shared; was missed in r10061. This was causing I18NSuite... (issue1752803)

2012-06-20 Thread jat
LGTM Thanks for tracking this down and fixing it. http://gwt-code-reviews.appspot.com/1752803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Move test Messages files from client to shared; was missed in r10061. This was causing I18NSuite... (issue1752803)

2012-06-20 Thread Rajeev Dayal
No prob, thx for your help in doing so :). On Wed, Jun 20, 2012 at 7:38 PM, j...@google.com wrote: LGTM Thanks for tracking this down and fixing it. http://gwt-code-reviews.**appspot.com/1752803/http://gwt-code-reviews.appspot.com/1752803/ --

[gwt-contrib] Re: Added ElementType to ConstraintDescriptors and ConstraintViolations. Used ElementType to handle ... (issue1746803)

2012-06-20 Thread idol
http://gwt-code-reviews.appspot.com/1746803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Added ElementType to ConstraintDescriptors and ConstraintViolations. Used ElementType to handle ... (issue1746803)

2012-06-20 Thread idol
http://gwt-code-reviews.appspot.com/1746803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fix violations generated by properties with constraints on both getters and fields (issue1746803)

2012-06-20 Thread idol
On 2012/06/21 00:00:43, David Idol wrote: Patches 3 and 4 are identical. I was attempting to update the issue's description and accidentally submitted the code again. http://gwt-code-reviews.appspot.com/1746803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors