Indian Rupee format

2013-05-20 Thread sreejyothi8
Hai, I tried using 'il8n numberformat' to get value in Indian rupee format by setting Locale as en_IN .But instead of returning Rs 10,00,00,000.00 my code return Rs. 10,000,000.00 in this format can anyone help me to get the exact result.I tried this in gwt2.5. Regards

Re: Verification Email Process

2013-05-20 Thread karthic chakravarthy
Hi Henry , what have you done for email verification at last ? -- 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

problem with javax.servlet.ServletContext in gwt-user.jar

2013-05-20 Thread gabriele.prandini
I'm using GWT (2.5.0) with grails (www.grails.org) I just upgraded from grails 1.3.7 to grails 2.2.2 Tryng to compile my project i got this error Caused by: java.lang.NoSuchMethodError: javax.servlet.ServletContext.getSessionCookieConfig()Ljavax/servlet/SessionCookieConfig; you can find some

Re: MVP For Popups

2013-05-20 Thread Tim Hill
Thanks Oliver, that has got me on the right track :) Next question... When I click on the save address button (for example), the callback registers that the save button for address has been clicked and runs the required method in the callback. This then calls an async method in another class

Re: MVP For Popups

2013-05-20 Thread Tim Hill
Thanks Oliver, that has got me on the right track :) Next question... When I click on the save address button (for example), the callback registers that the save button for address has been clicked and runs the required method in the callback. This then calls an async method in another class

DataGrid Debug (missing data)

2013-05-20 Thread Timothy Spear
I am sure I am missing something very basic. :D Anyway, here is the setup: After login I clear all contents and create the following basic structure: StackLayoutPanel LayoutPanel TabLayoutPanel FlowPanel* (Place holder for future)* FlowPanel* (Place holder

Testing GWT without GwtTestCase

2013-05-20 Thread Thad
Can anyone clarify for me this Google testing blog entry? http://googletesting.blogspot.com/2009/08/tott-testing-gwt-without-gwttest.html Model, view, presenter I think I'm clear on (ha! yeah, sure), but I'm trying to understand the Server.class. It's described as a completely standard backend

Which approach is better for CellTable - TextColumn with dynamic style OR Column with ImageResource?

2013-05-20 Thread andy_p1
Hi, I am creating a moderate sized CellTable - 100 rows and 5 columns. In some of the columns I need to show small images (no text) depending on the value returned by the accessor method of the backing object for the row. The number of images are fixed i.e. the logic is basically to display

Re: I/O 2013 - GWT Sessions?

2013-05-20 Thread dhoffer
Since some want the GWT conference on the west coast and some on the east, I say let's split the difference and meet in the middle. I vote for Denver. -Dave On Wednesday, March 6, 2013 3:56:52 PM UTC-7, James wrote: I know it's earlybut is anyone familiar with the planned Google Web

Re: TabLayoutPanel not displaying properly after button push

2013-05-20 Thread Michael Galuza
I solved this by using a TabPanel instead of a TabLayoutPanel. -- 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

RPC Token Exceptions because Session Cookies can't be set.

2013-05-20 Thread Navin Surtani
Hey all, I tried making my login form on my web app be protected by the XSRF servlet and I am getting RPC Token Exceptions thrown. I followed the implementation guidelines as described herehttps://developers.google.com/web-toolkit/doc/latest/DevGuideSecurityRpcXsrf and after I had issues I

NumberFormat

2013-05-20 Thread Muhammed Abdul Salim
Hai, I have a doubt regarding currency format in GWT.I am using gwt2.5 and tried formatting my value to Indian currency format using il8n NumberFormat by setting Locale = en_IN in gwt.xml. when i execute my code result was Rs. 10,000,000.00 instead of Rs 10,00,00,000.00 .Please help to

Re: StackTraceElement was not included in the set of types which can be serialized by this SerializationPolicy

2013-05-20 Thread Goktug Gokdogan
StacktraceElement is marked as transient to keep it out of serialization. Because of that, RPC system is not aware of the type. If you really want to transfer the stack trace with your exception, then put a dummy field in your exception: private StackTraceElement dummyFieldToIncludeType; This

Re: Testing GWT without GwtTestCase

2013-05-20 Thread Goktug Gokdogan
On Mon, May 20, 2013 at 6:42 AM, Thad thad.humphr...@gmail.com wrote: Can anyone clarify for me this Google testing blog entry? http://googletesting.blogspot.com/2009/08/tott-testing-gwt-without-gwttest.html Model, view, presenter I think I'm clear on (ha! yeah, sure), but I'm trying to

Offline debugging my gwt app

2013-05-20 Thread yves
Hello All, I need to debug my gwt app. The problem is that I need to debug it OFFLINE. After a tour on the net, I didn't found an answer. Thus here is the scenario. My GWT version is 2.4.0 Debugging the code is ok. Running in production offline is ok, using a cache manifest. But I can't do

Web Component support/usage?

2013-05-20 Thread Ed
How will GWT support/use/enable Web Component browser development (Shadow Dom stuff) (roadmap) ? See: LINKhttp://techcrunch.com/2013/05/19/google-believes-web-components-are-the-future-of-web-development/?utm_source=feedburnerutm_medium=feedutm_campaign=Feed%3A+Techcrunch+%28TechCrunch%29 - Ed

Re: Web Component support/usage?

2013-05-20 Thread Goktug Gokdogan
We are looking into it. Details will appear as we progress. On Mon, May 20, 2013 at 11:49 AM, Ed post2edb...@gmail.com wrote: How will GWT support/use/enable Web Component browser development (Shadow Dom stuff) (roadmap) ? See:

Re: Error: com.google.gwt.user.client.rpc.StatusCodeException: 404 on Tomcat server

2013-05-20 Thread Ahmed El-Fayomy
I'm having the exact same problem, any luck?! On Friday, February 24, 2012 11:30:38 PM UTC+3, Maurice wrote: Hello All, I am having problems getting my RPC code working on a Tomcat server hosted by serversanddomains.com. The steps I have followed are: 1) Using GWT 2.4, and eclipse I

Re: Web Component support/usage?

2013-05-20 Thread Ed Bras
Thanks for the update. Are things like these kind of news items put some where in the future ? Maybe better use of the gwt blog ? On Mon, May 20, 2013 at 9:23 PM, Goktug Gokdogan gok...@google.com wrote: We are looking into it. Details will appear as we progress. On Mon, May 20, 2013 at

Re: Offline debugging my gwt app

2013-05-20 Thread Joseph Lust
It is not clear what you're attempting here. By Offline I believe you mean when not using the DevMode debugging plugin. You can only debug with the debugger when running in debugging mode. You can however use source maps and set breakpoints in the browser (i.e. Chrome Dev Tools) if you like

Re: Offline debugging my gwt app

2013-05-20 Thread yves
Thanks for your answer, but my question is about the HTML5 offline feature. Sorry if my post was not clear. The problem is that I can't debug the GWT app while running it without a connection to the site server, thus offline. Yves -- You received this message because you are subscribed to

Re: problem with javax.servlet.ServletContext in gwt-user.jar

2013-05-20 Thread Thomas Broyer
On Monday, May 20, 2013 10:27:17 AM UTC+2, gabriele.prandini wrote: I'm using GWT (2.5.0) with grails (www.grails.org) I just upgraded from grails 1.3.7 to grails 2.2.2 Tryng to compile my project i got this error Caused by: java.lang.NoSuchMethodError:

Re: Offline debugging my gwt app

2013-05-20 Thread Thomas Broyer
On Monday, May 20, 2013 8:46:08 PM UTC+2, yves wrote: Hello All, I need to debug my gwt app. The problem is that I need to debug it OFFLINE. After a tour on the net, I didn't found an answer. Thus here is the scenario. My GWT version is 2.4.0 Debugging the code is ok. Running in

Re: [gwt-contrib] Moving mailing lists to @gwtproject.org?

2013-05-20 Thread Stephen Haberman
Also, since google-web-toolkit-contributors is incredibly long and no longer reflective of the projects name, it seems like a good time to fix that too. Makes sense. gwt-disc...@gwtproject.org (formerly google-web-tool...@googlegroups.com ) In the spirit of friendly bikeshedding, how

Re: [gwt-contrib] Re: Moving mailing lists to @gwtproject.org?

2013-05-20 Thread Stephen Haberman
I think it could be beneficial to create a fourth group that is used by Gerrit so gwt-contrib doesn't get spammed. I believe the idea is that gerrit can send out emails (either for specific commits or you can subscribe to the entire project), so there shouldn't be a need for a commits@ list.

Re: [gwt-contrib] Re: Moving mailing lists to @gwtproject.org?

2013-05-20 Thread Jens
I think it could be beneficial to create a fourth group that is used by Gerrit so gwt-contrib doesn't get spammed. I believe the idea is that gerrit can send out emails (either for specific commits or you can subscribe to the entire project), so there shouldn't be a need for a

Re: [gwt-contrib] Moving mailing lists to @gwtproject.org?

2013-05-20 Thread Matthew Dempsky
On Mon, May 20, 2013 at 8:44 AM, Stephen Haberman step...@exigencecorp.comwrote: Also, since google-web-toolkit-contributors is incredibly long and no longer reflective of the projects name, it seems like a good time to fix that too. Makes sense. gwt-disc...@gwtproject.org

Re: [gwt-contrib] Re: Moving mailing lists to @gwtproject.org?

2013-05-20 Thread Matthew Dempsky
On Mon, May 20, 2013 at 9:12 AM, Jens jens.nehlme...@gmail.com wrote: Ha, should have checked Gerrit settings I guess :) Well if that works out well, then I am fine with having no commits@ list. Instead we could just add some extra info about Gerrit and its e-mail notification support on the

[gwt-contrib] Re: Initial Gerrit setup for GWT Open Source Project

2013-05-20 Thread Jens
* 1. Complete a Contributor Agreement: go to https://gwt-review.googlesource.com, click “Settings” and then “Agreements”, and follow the instructions. If you previously submitted an individual CLA electronically via Google Code, please do so again via Gerrit

Re: [gwt-contrib] Re: Initial Gerrit setup for GWT Open Source Project

2013-05-20 Thread Matthew Dempsky
On Mon, May 20, 2013 at 11:07 AM, Jens jens.nehlme...@gmail.com wrote: * 1. Complete a Contributor Agreement: go to https://gwt-review. googlesource.com, click “Settings” and then “Agreements”, and follow the instructions. If you previously submitted an individual CLA

Re: [gwt-contrib] Re: ValueListBox should implement HasEnabled (6112) (issue1832803)

2013-05-20 Thread Thomas Broyer
Should be http://gwtproject.org/makinggwtbetter.html On Sunday, May 19, 2013 10:00:01 PM UTC+2, Patrick Tucker wrote: I started from scratch and was able to get it mostly working. Is there a doc that explains the right way to submit a patch? On Friday, May 17, 2013 1:19:33 PM UTC-4,

[gwt-contrib] Change in gwt[master]: Removes GWTTestCase.supportsAsync.

2013-05-20 Thread Goktug Gokdogan
Goktug Gokdogan has submitted this change and it was merged. Change subject: Removes GWTTestCase.supportsAsync. .. Removes GWTTestCase.supportsAsync. GWTTestCase.supportsAsync was just another artifact of Benchmark infra that

[gwt-contrib] Change in gwt[master]: Makes GWT.runAsync to always run async.

2013-05-20 Thread Goktug Gokdogan
Goktug Gokdogan has submitted this change and it was merged. Change subject: Makes GWT.runAsync to always run async. .. Makes GWT.runAsync to always run async. Fixes issue 5560 Change-Id:

[gwt-contrib] Change in gwt[master]: Introduces generic Composite widgets.

2013-05-20 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Introduces generic Composite widgets. .. Patch Set 2: (6 comments) File

[gwt-contrib] Change in gwt[master]: Introduces generic Composite widgets.

2013-05-20 Thread Goktug Gokdogan
Hello Matthew Dempsky, Thomas Broyer, Leeroy Jenkins, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/2582 to look at the new patch set (#3). Change subject: Introduces generic Composite widgets.

[gwt-contrib] Change in gwt[master]: Removes JavaScriptException dependency from c.g.gwt.core.sha...

2013-05-20 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: Removes JavaScriptException dependency from c.g.gwt.core.shared. .. Patch Set 1: Code-Review+2 (1 comment)

[gwt-contrib] Change in gwt[master]: Introduces generic Composite widgets.

2013-05-20 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: Introduces generic Composite widgets. .. Patch Set 3: (1 comment) File

[gwt-contrib] Change in gwt[master]: Removes JavaScriptException dependency from c.g.gwt.core.sha...

2013-05-20 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Removes JavaScriptException dependency from c.g.gwt.core.shared. .. Patch Set 1: (1 comment) File

[gwt-contrib] Change in gwt[master]: Introduces generic Composite widgets.

2013-05-20 Thread Brian Slesinsky
Brian Slesinsky has posted comments on this change. Change subject: Introduces generic Composite widgets. .. Patch Set 3: (4 comments) Composite looks good. Some javadoc tweaks:

[gwt-contrib] Integration Testing Idea

2013-05-20 Thread darkling235
First off I love using GWT but I have a concern about the current unit testing available. The JUNIT tests provide a great way to do regression testing but I find myself lacking an effective way to do integration testing. I really need a way to make sure that all the layers match up and work

[gwt-contrib] Change in gwt[master]: Adds part of Java 7 new language features.

2013-05-20 Thread Ray Cromwell
Ray Cromwell has posted comments on this change. Change subject: Adds part of Java 7 new language features. .. Patch Set 10: Code-Review+2 (1 comment) File

[gwt-contrib] Change in gwt[master]: Introduces generic Composite widgets.

2013-05-20 Thread Jens Nehlmeier
Jens Nehlmeier has posted comments on this change. Change subject: Introduces generic Composite widgets. .. Patch Set 3: (1 comment) File

[gwt-contrib] Change in gwt[master]: Adds the remaining (and more complex) Java 7 new language fe...

2013-05-20 Thread Ray Cromwell
Ray Cromwell has posted comments on this change. Change subject: Adds the remaining (and more complex) Java 7 new language features. .. Patch Set 8: Code-Review+2 (1 comment)

[gwt-contrib] Change in gwt[master]: Removes JavaScriptException dependency from c.g.gwt.core.sha...

2013-05-20 Thread Goktug Gokdogan
Hello John A. Tamplin, Leeroy Jenkins, Thomas Broyer, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/2840 to look at the new patch set (#2). Change subject: Removes JavaScriptException dependency from c.g.gwt.core.shared.

[gwt-contrib] Change in gwt[master]: Removes the static book keeping in the Timer class.

2013-05-20 Thread Goktug Gokdogan
Goktug Gokdogan has uploaded a new change for review. https://gwt-review.googlesource.com/2851 Change subject: Removes the static book keeping in the Timer class. .. Removes the static book keeping in the Timer class. This

[gwt-contrib] Change in gwt[master]: Removes JavaScriptException dependency from c.g.gwt.core.sha...

2013-05-20 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: Removes JavaScriptException dependency from c.g.gwt.core.shared. .. Patch Set 2: Code-Review+2 -- To view, visit https://gwt-review.googlesource.com/2840 To

[gwt-contrib] Change in gwt[master]: Removes the static book keeping in the Timer class.

2013-05-20 Thread Matthew Dempsky
Matthew Dempsky has posted comments on this change. Change subject: Removes the static book keeping in the Timer class. .. Patch Set 1: Code-Review+2 -- To view, visit https://gwt-review.googlesource.com/2851 To unsubscribe,

[gwt-contrib] Change in gwt[master]: Removes JavaScriptException dependency from c.g.gwt.core.sha...

2013-05-20 Thread Goktug Gokdogan
Goktug Gokdogan has submitted this change and it was merged. Change subject: Removes JavaScriptException dependency from c.g.gwt.core.shared. .. Removes JavaScriptException dependency from c.g.gwt.core.shared. Note that,

[gwt-contrib] Change in gwt[master]: Removes the static book keeping in the Timer class.

2013-05-20 Thread John A. Tamplin
John A. Tamplin has posted comments on this change. Change subject: Removes the static book keeping in the Timer class. .. Patch Set 1: Code-Review+1 My recollection is that the close hook was required to avoid memory leaks

[gwt-contrib] Change in gwt[master]: Adds part of Java 7 new language features.

2013-05-20 Thread Roberto Lublinerman
Roberto Lublinerman has posted comments on this change. Change subject: Adds part of Java 7 new language features. .. Patch Set 10: (1 comment) Thanks. File

[gwt-contrib] Re: Integration Testing Idea

2013-05-20 Thread Thomas Broyer
I think the answer is that GWTTestCase is for unit-tests, and for integration-tests you'd use WebDriver/Selenium (on the compiled JS and thus like any other webapp) On Tuesday, May 21, 2013 1:43:08 AM UTC+2, darkl...@aol.com wrote: First off I love using GWT but I have a concern about the

[gwt-contrib] Change in gwt[master]: Adds the remaining (and more complex) Java 7 new language fe...

2013-05-20 Thread Roberto Lublinerman
Roberto Lublinerman has posted comments on this change. Change subject: Adds the remaining (and more complex) Java 7 new language features. .. Patch Set 8: (1 comment) Thanks for this as well.

[gwt-contrib] Change in gwt[master]: Removes the static book keeping in the Timer class.

2013-05-20 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Removes the static book keeping in the Timer class. .. Patch Set 1: Thanks for the insight John. That was what I was guessing. The reason I think this is

[gwt-contrib] Change in gwt[master]: Adds the remaining (and more complex) Java 7 new language fe...

2013-05-20 Thread Roberto Lublinerman
Hello Matthew Dempsky, Ray Cromwell, Matthew Dempsky, Leeroy Jenkins, Goktug Gokdogan, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/2681 to look at the new patch set (#9). Change subject: Adds the remaining (and more complex) Java 7 new language

[gwt-contrib] Change in gwt[master]: Adds the remaining (and more complex) Java 7 new language fe...

2013-05-20 Thread Roberto Lublinerman
Roberto Lublinerman has posted comments on this change. Change subject: Adds the remaining (and more complex) Java 7 new language features. .. Patch Set 9: Previous patch was approved and changes since then are trivial.

[gwt-contrib] Change in gwt[master]: Adds the remaining (and more complex) Java 7 new language fe...

2013-05-20 Thread Roberto Lublinerman
Roberto Lublinerman has posted comments on this change. Change subject: Adds the remaining (and more complex) Java 7 new language features. .. Patch Set 9: Code-Review+2 Previous patch was approved and changes since then

Re: [gwt-contrib] Integration Testing Idea

2013-05-20 Thread Brian Slesinsky
I've written a library (not open source) for integration testing but it proved not so popular with my users. There were similar issues: initializing the database is tricky from the browser (it requires a whole different RPC API just for testing), and writing tests of asynchronous code is hard when

[gwt-contrib] Change in gwt[master]: Introduces generic Composite widgets.

2013-05-20 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Introduces generic Composite widgets. .. Patch Set 3: (5 comments) File

[gwt-contrib] Change in gwt[master]: Introduces generic Composite widgets.

2013-05-20 Thread Goktug Gokdogan
Hello Matthew Dempsky, Thomas Broyer, Leeroy Jenkins, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/2582 to look at the new patch set (#4). Change subject: Introduces generic Composite widgets.

[gwt-contrib] Re: Integration Testing Idea

2013-05-20 Thread darkling235
I have experimented with that, my problem is that we're using EXT-GWT and using the grid pretty heavily. A lot of the things I'd like to test are the size of lists in the application, are events propigating properly to all components when they should, and basically testing behavior based on