Re: NumberFormat currency pattern issues (wrong positiveSuffix and possible encoding issues)

2011-12-16 Thread Thomas Broyer
Not sure this is a bug, maybe by-design (i.e. don't use the currency format for parsing). If you want to parse a number, don't use a currency format. If you expect the user to (optionally) type in the currency symbol, you'd better pre-process the value (what if the user types $10 in a € locale?

Re: i18n/localization - multiline text in .properties file

2011-12-16 Thread Frank
I think Jaro is meaning something else than you are asking... (\ is used if you want to type multiple lines in the I18N file cause otherwise the lines get to long in your editor) I never use UIBinder but in normal GWT you use BR/ in an HTML widget for multiline. The HTML widget however has a

Re: GWT Developer Plugin for Firefox 8

2011-12-16 Thread Dimitrijević Ivan
Also verified and tested on Win 7 64bit. It seams that everything is OK. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/AUceAAA3R8UJ. To post to

Re: How to align header/footer text in cell table

2011-12-16 Thread Vivek Dudani
Hey Craig, can you please tell me how can do the similar thing for CheckboxCell in the header column. I need to allign the CheckboxCell to left in the Header column. Thanks -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this

Re: How to align header/footer text in cell table

2011-12-16 Thread Vivek Dudani
Hey guys, can u tell me how to fix the issue in case of CheckboxCell. I need to allign the CheckboxCell in the header column. how can i do that? Thanks -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web

MASTER-DETAIL with MVP

2011-12-16 Thread sampath sai
Hi, I am trying to implement Master and Details using activities and places. Below are code snippets g:FlowPanel g:SimplePanel styleName=*{style.entityDetails}* ui:field=* 'master'*/g:SimplePanel /g:FlowPanel g:SimplePanel

Window Frozen

2011-12-16 Thread Daniel
Hello, guys, I have a strange question about gwt interface. Click on any column sorting submenu of header of ListGrid (can be found at the right of every column when the cursor is on a column) Actual result: The window is frozen. All the clicks in it don't have any effects anymore. Thank you in

Re: MASTER-DETAIL with MVP

2011-12-16 Thread Jens
Your activity mappers are responsible to do this. If you dont need an activity for a given place then just return null (or a placeholder activity that can show a custom message or something, e.g. Please select an entry in the table above). If you return null in your details activity mapper

GWT and Hibernate

2011-12-16 Thread big_blue
Hi. I know there a lot of feed about GWT and Hibernate / Spring but until now i do not find a good answer of my question. What i want to do is a simple web application with plain java POJOs and database persistence with hibernate. AND and this is the main part. I just want to have one java class

Re: GWT and Hibernate

2011-12-16 Thread Juan Pablo Gardella
See gwt-sample (Spring, JPA2)https://bitbucket.org/gardellajuanpablo/gwt-sample/wiki/Home El 16 de diciembre de 2011 04:20, big_blue alex.weis...@googlemail.comescribió: Hi. I know there a lot of feed about GWT and Hibernate / Spring but until now i do not find a good answer of my

Re: GWT as reporting application

2011-12-16 Thread Z.A Jafari
how about performance og GWT compared to Swing On 16 December 2011 10:13, Kanagaraj M kanagaraj@gmail.com wrote: you can use highcharts, it is nice. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web

Re: GWT + GAE common issues.

2011-12-16 Thread MagusDrk
Hi All. Again me. I'm trying to use RequestFactory, now I have to use some domain methods, for example an myDomainClass.contains(anotherDomainClass). this is a method created on the domian data class, but I need to to this check in the client side. I've tried to use a

Re: GWT as reporting application

2011-12-16 Thread Z.A Jafari
you can use highcharts, it is nice. can i use highcharts in my GWT application?? On 16 December 2011 18:05, Z.A Jafari zjaff...@gmail.com wrote: how about performance og GWT compared to Swing On 16 December 2011 10:13, Kanagaraj M kanagaraj@gmail.com wrote: you can use highcharts, it

Re: NumberFormat currency pattern issues (wrong positiveSuffix and possible encoding issues)

2011-12-16 Thread Tiago
Well, $10 or 10 USD should clearly be invalid strings for an euro locale. I wouldn't mind 10 EUR being invalid for the default format too since using currency codes is quite specific. Actually, all these could be configurable parameters (requiring, ignoring or refusing currency symbols and/or

Re: Problem with uiBinder setup for custom event handler interface.

2011-12-16 Thread James Drinkard
I opted to create a composite widget and put the handler in the widget itself so it's more of an encapsulated component. On Dec 13, 4:34 pm, Eric Metcalf emetcalf@gmail.com wrote: I think what you want is to have the view have a IUploader getIUploader() that returns MultipUploader.  The

RE: GWT as reporting application

2011-12-16 Thread Armishev, Sergey
I tested highcharts static and dynamic performance. See discussion about this on highcharts chat board here http://highslide.com/forum/viewtopic.php?f=9t=12936 They had issues on Safari and IE in realtime mode when number of points more 4000. It was related to mouse tracking and tooltips.

Re: MASTER-DETAIL with MVP

2011-12-16 Thread David
I usually associate the url/token in the browser address with a single Activity/Place.I usually just revert back to the old style Presenters , rather than attempting to nest additional Activity/ Place(s). Most of my apps use this pattern: Activity/Place associated with the url / Activity

Re: How use caching with gwt

2011-12-16 Thread Uemit
You have to clarify what you mean with caching? If you refer to caching of the javascript files that are transfered to the client then refer to these docs: - http://code.google.com/speed/articles/caching.html - http://code.google.com/speed/page-speed/docs/caching.html If you are talking

GWT and Hibernate

2011-12-16 Thread Néstor Boscán
Hi Alex I have donde this with many projects. The problem with Hibernate and any framework that serializes POJOs (GWT, WebServices, JSON, etc) is that Hibernate does not return POJOs, but Proxies of your POJOs. So basically the solution to this problem is to clean your objects returned by

Re: GWT and Hibernate

2011-12-16 Thread Alfredo Quiroga-Villamil
Nestor is right on! I have heavily used Gilead ( http://noon.gilead.free.fr/gilead/index.php?page=gwt) which solves exactly this: The problem with Hibernate and any framework that serializes POJOs (GWT, WebServices, JSON, etc) is that Hibernate does not return POJOs, but Proxies of your POJOs.

Re: GWT and Hibernate

2011-12-16 Thread Néstor Boscán
I have not checked Gilead. I'm checking it. On Fri, Dec 16, 2011 at 1:19 PM, Alfredo Quiroga-Villamil laww...@gmail.com wrote: Nestor is right on! I have heavily used Gilead (http://noon.gilead.free.fr/gilead/index.php?page=gwt) which solves exactly this: The problem with Hibernate and

Required Immediately: QA Engineer w/Java @ San Jose, CA

2011-12-16 Thread Mohammed Abdul
Hi Associates, We have the below requirement through our client associate. Please let me know if you have anyone for the below position. While submitting, please submit along with current resume, rate, contact details and Skype ID. Please reply to: mohammed.ab...@exatechinc.com * * *Position:

GWT DnD widget?

2011-12-16 Thread dhoffer
Is it possible to DnD from the desktop into a GWT application similar to how users can attach attachments in GMail? Or do I have to use a manual file upload approach? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Re: How use caching with gwt

2011-12-16 Thread Thomas Broyer
On Friday, December 16, 2011 5:27:50 PM UTC+1, Uemit wrote: You have to clarify what you mean with caching? If you refer to caching of the javascript files that are transfered to the client then refer to these docs: - http://code.google.com/speed/articles/caching.html -

Re: GWT DnD widget?

2011-12-16 Thread Thomas Broyer
If the browser can do it, then you can use it with GWT; possibly throwing a bit of JSNI (in this case, you'd need it) See: - http://www.w3.org/TR/html5/dnd.html for the DnD part - http://www.w3.org/TR/FileAPI/ to access the file - http://www.w3.org/TR/XMLHttpRequest2/#the-send-method

How to disable GWT plugin per request level? (MSIE)

2011-12-16 Thread Jaroslav Záruba
To (remotely) debug my app I need to get to it by submitting POST requests through several other GWT-pages. (My app is one step within a business process manager.) I don't have the Java source from the preceding steps, therefore I need the magic codesvr parameter to show up only on my GWT-app.

Required: Tibco BE Developer @ IL

2011-12-16 Thread Mohammed Abdul
Hi Associates, We have the below requirement through our client associate. Please let me know if you have anyone for the below position. While submitting, please submit along with current resume, rate, contact details and Skype ID. Please reply to: mohammed.ab...@exatechinc.com * * *Position:

Re: Multiple gwt-rpc calls and UI

2011-12-16 Thread Mike Dee
I've been looking into this for the past few days. RequestFactory seems like it could be a solution. It would solve other problems too, such as being able to selectively expose the fields of entity classes. Some of our entity classes would not translate over to GWT. However, my initial

Error installing Eclipse Google App Engine Plugin--How I Resolved It

2011-12-16 Thread itWouldBeWise
Hi, I got an error similar to another user: Error: Cannot complete the install because one or more required items could not be found. Software being installed: Google App Engine Java SDK 1.5.5 1.5.5.r36v201110112027 (com.google.appengine.eclipse.sdkbundle.e36.feature.feature.group

What is the underlying technology behind ServiceAsync interface?

2011-12-16 Thread acidrous
I developed a web application (works properly) which registers a user to the system and allows user to upload a file to system via https. The client side code is totally developed by using GWT 2.4 and the back end is several servlets. Except the upload code, all the client-server

Required immediately: Data Architect @ Schaumburg, Illinois

2011-12-16 Thread Mohammed Abdul
Hi Associates, We have the below requirement through our client associate. Please let me know if you have anyone for the below position. While submitting, please submit along with current resume, rate, contact details and Skype ID. Please reply to: mohammed.ab...@exatechinc.com * * *Position:

Base64 String from ImageResource looks different in Safari and Chrome?!

2011-12-16 Thread benneq
Hi, I've got a strange problem: In out project we use an image as background (repeat: both) and it's a gwt-sprite. When displaying the .png file everything is okay. But after adding it to ImageResource and using its created Base64 String things get wired! Safari gives a much brighter image than

Gwt4Touch2 now in the oven and almost ready to come out!

2011-12-16 Thread Alfredo Quiroga-Villamil
Hello: A couple of months ago we launched Gwt4Touch based on the Sencha Touch library. Soon after, Sencha announced that they would be releasing a Developer Preview for what they called Sencha Touch 2. We were already making plans to drastically improve our API for the first version of GWT4Touch

Re: Multiple gwt-rpc calls and UI

2011-12-16 Thread Thomas Broyer
I haven't followed the discussion at all, but RF using only ValueProxy looks a lot like GWT-RPC (major difference is the need to edit() in a context). It's definitely not only about CRUD. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Base64 String from ImageResource looks different in Safari and Chrome?!

2011-12-16 Thread Thomas Broyer
You probably have some gamma or color profile info in your image that make it look the same, but is optimized out by GWT (independently of the base64 encoding) -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on

Re: How well does a GWT webapp play with Google Web Crawler

2011-12-16 Thread Draško
thanks for your reply raphael ... the problem i have with the standard google's ajax crawling approach is that I do not have a server logic, so no means to generate a servlet mapper that will spit out static versions of gwt webapp. A friend of mine made a suggestion that the webapp should be

Re: Required immediately: Data Architect @ Schaumburg, Illinois

2011-12-16 Thread Juan Pablo Gardella
Mohammed don't use this forum to post jobs, use https://groups.google.com/forum/#!forum/google-web-toolkit-employment please. El 16 de diciembre de 2011 15:12, Mohammed Abdul recruiter.m...@gmail.comescribió: Hi Associates, We have the below requirement through our client associate. Please

Is GWT preferable for large scale projects similar to FB?

2011-12-16 Thread mvj
Hi all... I'm a newbie to GWT. I mean just started learning it. So I want to ask that for a large scale project (web app ike Facebook) is GWT preferable? Why? We are confused whether to go for pure JSP/servlets or GWT like framework? Thanking in advance -- You received this message because

[gwt-contrib] Passing the row index to the FieldUpdater for a CompositeCell instead of passing -1 all the time. (issue1618803)

2011-12-16 Thread jlabanca
Reviewers: rdayal, Description: Passing the row index to the FieldUpdater for a CompositeCell instead of passing -1 all the time. Issue: 7050 Please review this at http://gwt-code-reviews.appspot.com/1618803/ Affected files: M user/src/com/google/gwt/cell/client/CompositeCell.java Index:

[gwt-contrib] Fix left/right mixup in SimplePager (issue1617804)

2011-12-16 Thread stephen . haberman
Reviewers: jlabanca, Please review this at http://gwt-code-reviews.appspot.com/1617804/ Affected files: M user/src/com/google/gwt/user/cellview/client/SimplePager.java Index: user/src/com/google/gwt/user/cellview/client/SimplePager.java diff --git

Re: [gwt-contrib] CSS3 support in CssResource: Closure Stylesheets?

2011-12-16 Thread Michael Vogt
Hello. How could I refuse?  :) SGTM. We will of course, still have to maintain all of the GWT-isms. Actually, I've been wondering if we shoudn't just adopt LESS or SASS extensions too. Yes, please. Greetings, Michael -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Add null check to ValueListBox.updateListBox (issue1619803)

2011-12-16 Thread stephen . haberman
Reviewers: rdayal, Please review this at http://gwt-code-reviews.appspot.com/1619803/ Affected files: M user/src/com/google/gwt/user/client/ui/ValueListBox.java M user/test/com/google/gwt/user/client/ui/ValueListBoxTest.java Index:

[gwt-contrib] Remove unused/broken constructors (issue1614805)

2011-12-16 Thread stephen . haberman
Reviewers: scottb, Please review this at http://gwt-code-reviews.appspot.com/1614805/ Affected files: M dev/core/src/com/google/gwt/dev/javac/typemodel/JField.java M dev/core/src/com/google/gwt/dev/javac/typemodel/JMethod.java M

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

2011-12-16 Thread stephen . haberman
Reviewers: rdayal, Please review this at http://gwt-code-reviews.appspot.com/1614806/ Affected files: M user/src/com/google/gwt/dom/client/StyleInjector.java Index: user/src/com/google/gwt/dom/client/StyleInjector.java diff --git a/user/src/com/google/gwt/dom/client/StyleInjector.java

[gwt-contrib] Fix SC_GATEWAY_TIMEOUT typo (issue1618805)

2011-12-16 Thread stephen . haberman
Reviewers: rdayal, Please review this at http://gwt-code-reviews.appspot.com/1618805/ Affected files: M user/src/com/google/gwt/http/client/Response.java Index: user/src/com/google/gwt/http/client/Response.java diff --git a/user/src/com/google/gwt/http/client/Response.java