Re: Cannot parse value: res.xxx as type ImageResource

2010-06-28 Thread giannisdag
Yes this is the problem. Sorry again, I have to be more careful :((( Haven't you forgotten the braces?    g:Image resource={res.bedroom} / -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: how to use GIN ?

2010-06-28 Thread PhilBeaudoin
Thomas gives very good advice, although I personally never use the @ImplementedBy annotation (not entirely sure why...). To complement his answer, if you're interested in saving the addClickHandler call you may want to take a look at UiBinder the @UiHandler annotation. On Jun 27, 3:41 pm, Thomas

Re: How to simplify your GwtEvent classes and have fun doing it!

2010-06-28 Thread PhilBeaudoin
Another simple trick I use when I need multiple events that have the same payload and handler methods, is to not declare the TYPE as a static member of the event. Instead I declare it elsewhere (anywhere really) and pass it to the event's constructor. Really simple, but can dramatically cut down

Re: how to control the pixel sizes of a Grid?

2010-06-28 Thread Magnus
Hi Andreas, thank you! I found out something: I thought I could get a solution by inserting images of the correct pixel size into each cell. So I created transparent images with the exact pixel sizes: 50x50 for the inner cells, 50x10 for the horizontal borders, 10x50 vor the vertical borders.

Re: how to control the pixel sizes of a Grid?

2010-06-28 Thread andreas
Try setting the border width on the Grid instance to 0: http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/gwt/user/client/ui/HTMLTable.html#setBorderWidth(int) - Andreas On 28 Jun., 09:43, Magnus alpineblas...@googlemail.com wrote: Hi Andreas, thank you! I found out

Re: CSS Localization

2010-06-28 Thread Thomas Broyer
On 28 juin, 03:53, Dan ddum...@gmail.com wrote: Is it possible to localize the css in a CssResource so that during the translation phase of product development, css tweaks can be made to adjust for language specific spacing and formatting issues? Yes, you can have distinct MyStyle_en.css

Re: PushButton hover not always removed on mouse out

2010-06-28 Thread ChrisK
I've had to make my own image button and replace all instances of PushButton with it. It mimics the PushButton behaviour but doesn't have this issue on the exact same page so I'm pretty sure this is an issue with PushButton. On May 17, 9:28 pm, ChrisK cknow...@gmail.com wrote: I'm using GWT

Re: how to control the pixel sizes of a Grid?

2010-06-28 Thread Magnus
Hi, I also set the border width to 0: grd.setBorderWidth(0); Thanks Magnus On 28 Jun., 09:53, andreas horst.andrea...@googlemail.com wrote: Try setting the border width on the Grid instance to 0: http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/g...) - Andreas On 28

Re: how to control the pixel sizes of a Grid?

2010-06-28 Thread Magnus
Hi, I made a screenshot of the table: cannot post link to imageshack, why? I drew a cross on the transparent images for debugging. As you can see, there is always a vertical space between the images. I post my current code below. Thanks for help Magnus --- private void init () {

Re: how to control the pixel sizes of a Grid?

2010-06-28 Thread Magnus
Here is the screenshot: http://yfrog.com/j7chessboardj Magnus -- 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-tool...@googlegroups.com. To unsubscribe from this group, send email to

Re: how to control the pixel sizes of a Grid?

2010-06-28 Thread andreas
Where exactly are the vertical spaces? From what I see, there are no spaces between the cells of the top and bottom row and the spaces between the cells in the left and right column are of the same color as the image background, so I assume there are actually also no spaces, correct me on this

Re: how to control the pixel sizes of a Grid?

2010-06-28 Thread andreas
Here's code I'd use to create a simplistic chess board: // the chess board with no spaces Grid cb = new Grid(10, 10); cb.setCellPadding(0); cb.setCellSpacing(0); cb.setBorderWidth(0); // assembles the board by inserting colored panels for (int i = 1; i 9; i++) { // panels of the top row

[ERROR] Unable to find 'Student.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source?

2010-06-28 Thread Aditya
hello, Its been now long time i m using GWT , I am facing some problem with GWT modules. I was having several modules in my application but over the period I updated my application and just wanted to remove some unused stuff from the application. So I deleted the module Student and then i

Re: Unable to find 'Student.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source?

2010-06-28 Thread andreas
Did you remove all inherits tags in all other modules referencing Student.gwt.xml? It may be a module still referencing it... On 28 Jun., 12:26, Aditya 007aditya.b...@gmail.com wrote: hello,       Its been now long time i m using GWT , I am facing some problem with GWT modules. I was

Re: Unable to find 'Student.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source?

2010-06-28 Thread Prashant
Delete old run configuration file. -- 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-tool...@googlegroups.com. To unsubscribe from this group, send email to

Re: Unable to find 'Student.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source?

2010-06-28 Thread aditya sanas
I m having 11-12 modules with having same inherits following files inherits name=com.google.gwt.user.User / inherits name=com.google.gwt.user.theme.standard.Standard/ inherits name='com.googlecode.gchart.GChart'/ these are common and none other than this. and forth one is for entry point.

Re: Unable to find 'Student.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source?

2010-06-28 Thread aditya sanas
@prashant : Can you please specify that file name which i should delete and exactly where it is located...? Thanks. -- Aditya On Mon, Jun 28, 2010 at 4:02 PM, Prashant nextprash...@gmail.com wrote: Delete old run configuration file. -- You received this message because you are subscribed

Re: Problem with eclipse plugin.

2010-06-28 Thread xworker
Hi Tried deleting the run configuraitons but the error is the same. I'm running Eclipse 3.5 with the Google Plugin for Eclipse 3.5 1.1.0.v200907291526 com.google.gdt.eclipse.suite.e35.feature.feature.group Thanks /X On 24 Juni, 16:09, Jason Parekh jasonpar...@gmail.com wrote: Try deleting

Re: Problem with eclipse plugin.

2010-06-28 Thread xworker
Updated the plugin to: Google Plugin for Eclipse 3.5 1.1.101.v200911161426 com.google.gdt.eclipse.suite.e35.feature.feature.group But now I get this error instead: Unknown argument: -portHosted Google Web Toolkit 2.0.3 DevMode [-noserver] [-port port-number | auto] [-whitelist whitelist-

Re: Problem with eclipse plugin.

2010-06-28 Thread xworker
Found the RC2 eclipse plugin. Works. Case closed. /x On 28 Juni, 12:48, xworker blomqvist.andr...@gmail.com wrote: Hi Tried deleting the run configuraitons but the error is the same. I'm running Eclipse 3.5 with the  Google Plugin for Eclipse 3.5 1.1.0.v200907291526

how to expends the rows of gwt ext's grid

2010-06-28 Thread GWT Groups
Hello Friends. How are You all. My question is that.. Can we create grid like smartGwt's Grid by using gwt-ext? I have created smartGwt Grid but smartgwt is little bit slower then gwt ext, so now i want to create grid in gwt. but my problem is that i don't know how to add rows expansion in gwt

Re: GWT Gmail API

2010-06-28 Thread Gal Dolber
http://code.google.com/apis/contacts/ :) 2010/6/28 charlie charlie.f...@gmail.com Googling for this yields a lot of results that are not applicable for what I'm searching for. Is there a GWT Gmail API so that given an email and password, I can see a list of their contacts ? --

Re: Unable to find 'Student.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source?

2010-06-28 Thread aditya sanas
Problem resolved. I deleted files from Run configurations . -- Aditya On Mon, Jun 28, 2010 at 4:08 PM, aditya sanas 007aditya.b...@gmail.comwrote: @prashant : Can you please specify that file name which i should delete and exactly where it is located...? Thanks. -- Aditya On Mon,

Re: how to control the pixel sizes of a Grid?

2010-06-28 Thread Magnus
Hello, I made another screenshot with red borders around the images: http://yfrog.com/cachessboardj As you can see there is vedrtical space below each image. I just found out that this is not the case in IE. Thanks Magnus On 28 Jun., 11:51, andreas horst.andrea...@googlemail.com wrote: Where

Working with Date using JSON - pt_BR

2010-06-28 Thread André Moraes
Hi, Is possible to convert a javascript Date object to a java.util.Date (and vice-versa)? Like the string or int? The Date.parse is marked as deprecated in the JDK, it's safe to use it within the GWT, and what is the behavior (localization) that it will show. My primary target is Brazilian

Re: how to control the pixel sizes of a Grid?

2010-06-28 Thread andreas
Yes I see. Maybe the image file dimensions and the dimensions of the Image instances are conflicting. When I get it right the dimensions of the Image instances are never set. Instead they are resized based on the dimension of the Grid itself. Now if the Image instances display an image with

Re: GWT Popup is not centered

2010-06-28 Thread RPB
I see the exact same behaviour in my application, and would appreciate any ideas with this issue. The popup is not centered for the first time only, and afterwards popup.center() works fine. I am using GWT 2.0.3. Here is some sample code: public class LoginForm extends PopupPanel { public

Re: Testing client code fails with JDOFatalUserException: Duplicate PMF name

2010-06-28 Thread Acerezo
Hello I've the same problem Did you find the solution? Thanks. On Jun 7, 10:13 am, ingo ingo.jaec...@googlemail.com wrote: hello google, believe it or not but this seems to be a problem as huherto wrote on the mailing list in earlier this year. unfortunately, he did not receive an answer

Re: GWT Popup is not centered

2010-06-28 Thread andreas
Did you try calling center() after the constructor, for example right after where you instantiate the PopupPanel without the center() inside the constructor? I'm not that deep into GWT core but maybe it's related to the fact that elements get their real/actual dimensions (and these are needed to

Re: Problem with eclipse plugin.

2010-06-28 Thread Jason Parekh
Those versions are obsolete (including RC2). The latest stable version of our plugin is GPE 1.3.3, which is available via our update site, see http://code.google.com/eclipse/docs/getting_started.html . jason On Mon, Jun 28, 2010 at 7:53 AM, xworker blomqvist.andr...@gmail.comwrote: Found the

Re: Google Plugin for Eclipse 3.6 is now available

2010-06-28 Thread Jason Parekh
On Fri, Jun 25, 2010 at 6:59 PM, Thomas Broyer t.bro...@gmail.com wrote: On 23 juin, 23:14, Jason Parekh jasonpar...@gmail.com wrote: Hey folks, Google Plugin for Eclipse 1.3.3 is out with support for Eclipse 3.6. Install it with Eclipse 3.6's new Eclipse Marketplace feature by going

Re: eclipse + pyjamas + dev mode

2010-06-28 Thread Jason Parekh
Hi Mariyan, I've never used Pyjamas, but you can launch dev mode with the -noserver argument which allows you to use your own web server instead of the embedded Jetty in devmode. jason On Sun, Jun 27, 2010 at 5:31 AM, mariyan nenchev nenchev.mari...@gmail.comwrote: Hi, if there are people

Re: GWT Popup is not centered

2010-06-28 Thread Paul Stockley
Make sure the first widget you add the to dialog has a width and ideally height set. Also make sure you don't have a css value set. The starter app sets this and it causes all sorts of problems. On Jun 28, 9:59 am, andreas horst.andrea...@googlemail.com wrote: Did you try calling center() after

IncompatibleRemoteServiceException: The response could not be deserialized

2010-06-28 Thread leslie
I am able to run my application on the Mac in hosted mode with no problems. Mac OS X 10.5.8 Java version - 1.5.024 Eclipse Galileo 3.5 GWT 2.0.3 Safari 4 Running on Windows in hosted mode is another story. Windows XP service pack 3 Java version 1.6.0.17 Eclipse Helio 3.6 GWT 2.0.3 Internet

Re: GWT 2.1.0 M1 and Roo development lifecycle. What would you do?

2010-06-28 Thread Marco De Angelis
Thanks to everybody for sharing your opinion. I think there is a way to keep your project code and roo code side-by- side, as roo tries to keep the separation as tidy as possible through AspectJ, secluded packages, etc. I am not yet convinced, though, that keeping roo inside your project is

Hello.. A gift!!!

2010-06-28 Thread Lei Zhen
Dear friend, One of my good friend is having his birthday celebration very soon,and I bought a digital camera for him as a birthday gift at an international trade company www.snnsn2.com ,I received the goods today,it has very good quality and affordable price. The company also sells some

Re: Hello.. A gift!!!

2010-06-28 Thread Gal Dolber
what the hell 2010/6/28 Lei Zhen zl13354...@gmail.com Dear friend, One of my good friend is having his birthday celebration very soon,and I bought a digital camera for him as a birthday gift at an international trade company www.snnsn2.com ,I received the goods today,it has very good

tomcat errors on opened browser

2010-06-28 Thread ledzgio
Hi to all, I have an annoying problem with GWT 1.5.3. I have made a GWT web applicazion, generated the war and deployed under apache tomcat. Well, the app works fine but, if i leave the application opened on the browser, than stop the server and starts it again, i obtain several error like this

Re: Events from SelectionCell in CellTable - GWT 2.1 M1

2010-06-28 Thread saklig
The setFieldUpdater proved to be a better solution, thanks :-) For some reason InternetExplorer does not send change events when changing the value of the selectionCell. Is this a known bug in GWT 2.1 M1 ? On Jun 27, 2:59 pm, Paul Stockley pstockl...@gmail.com wrote: use the

Re: How to simplify your GwtEvent classes and have fun doing it!

2010-06-28 Thread Paul Schwarz
Thanks for the crits Thomas, I've learned something from this: keeping handlers together in a given class. That's quite neat because really what I was driving at is not so much optimising output of the GWT compiler, but more cutting down on the cognitive load on the developer and time it takes

Re: How to simplify your GwtEvent classes and have fun doing it!

2010-06-28 Thread Paul Schwarz
Thanks Phil, though what would this look like in this case? The design of the GwtEvent and TYPE being static is actually very powerful in its elegant simplicity. A call to the constructor of GwtEvent.Type() actually causes an int to be incremented and this becomes the hashCode ID of this event

Re: New open source eclipse plugin for UiBinder validation

2010-06-28 Thread Jason Parekh
Hey Gal, Very cool! GPE doesn't expose any extension points, but you should be able to add your autocompletion proposals by hooking into WST's autocompletion framework (we subclass org.eclipse.wst.xml.ui.internal.contentassist.XMLContentAssistProcessor). Hope that helps, jason On Sat, Jun 26,

Re: MVP with EventBus question

2010-06-28 Thread Paul Schwarz
Thanks so much for this answer. I have printed it and pinned it up right beside my screen so will be referring to it often until these concepts become solid in my mind. I think the largest mind gap here for me is the concept that a presenter's view is used to fill the whole screen, and then it has

Re: how to control the pixel sizes of a Grid?

2010-06-28 Thread Magnus
Hi, your code works fine! Thanks! But: Why? What's the qualitative difference? BTW: Do you know a quick method to draw a line between the inner and outer cells? I wonder if I should keep on trying with my version or if your method using SimplePanel is more stable in either case? What about

Re: how to control the pixel sizes of a Grid?

2010-06-28 Thread Magnus
BTW: I must set the grids pixel size, because it will be of height 0. The parent is a DockLayoutPanel... But it's ok, since I know the correct size... Magnus -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: how to control the pixel sizes of a Grid?

2010-06-28 Thread andreas
I think the difference was that you never set the size of the Image instances. You know the resolution of the images you use as background. Try calling setPixelSize(...) on each Image instance with the image resolution values. This way you can make sure the Image has the correct size, thus the

Re: A design pattern for widgets in the MVP - GIN - UiBinder paradigm.

2010-06-28 Thread drthink
Go for it. I would also appreciate it sooner than later. On Jun 27, 9:35 am, felipenasc felipen...@gmail.com wrote: You could take a look at gwt-platform (http://code.google.com/p/gwt-platform/ ), a complete GWT MVP Framework. It does support a lot of features required by real applications

Re: scrollable area in SplitLayoutPanel

2010-06-28 Thread Vik
anyone on this plz? Thankx and Regards Vik Founder www.sakshum.com www.sakshum.blogspot.com On Sun, Jun 27, 2010 at 11:17 PM, Vik vik@gmail.com wrote: Hie I am using SplitLayoutPanel and the content area i want to be scrollable. Right now it comes of fixed width. Any idea on what

Re: scrollable area in SplitLayoutPanel

2010-06-28 Thread Paul Stockley
Add a ScrollPanel as the first child, then put your content in this. Make sure the width and height of the scroll panel are set to 100% On Jun 28, 1:42 pm, Vik vik@gmail.com wrote: anyone on this plz? Thankx and Regards Vik Founderwww.sakshum.comwww.sakshum.blogspot.com On Sun, Jun

Re: TabPanel - 100% height for client widget?

2010-06-28 Thread Stefan Bachert
Hi, this does set height to the height of the browser window when starting. But the height did not change when browser window changes Stefan Bachert http://gwtworld.de On Jun 28, 3:39 am, Nian Zhang flust...@gmail.com wrote: I think you need call pnl .setHeight(Window.getClientHeight())

Re: SelectionModel on CellTable

2010-06-28 Thread bond
Thanks very much Thomas.Do you think that is a good idea open an issue? Thanks On 24 Giu, 20:27, Thomas Broyer t.bro...@gmail.com wrote: On 24 juin, 18:30, bond daniele.re...@gmail.com wrote: Hi, I've  a question on Cell table and in particolar on the SelectionModel

Re: Passing PHP variables to my GWT application

2010-06-28 Thread barbe...@muohio.edu
Alright, so I have attempted to learn this JSON business, and have run into some issues. I followed the tutorial at: http://code.google.com/webtoolkit/doc/latest/tutorial/JSON.html Once I thought I understood it, I began to implement it within my project. However, I cannot successfully retrieve

Re: Passing PHP variables to my GWT application

2010-06-28 Thread Jeff Chimene
On 06/28/2010 12:12 PM, barbe...@muohio.edu wrote: Alright, so I have attempted to learn this JSON business, and have run into some issues. I followed the tutorial at: http://code.google.com/webtoolkit/doc/latest/tutorial/JSON.html Once I thought I understood it, I began to implement it

Compiling GWT-App causes org.tigris.subversion.javahl.ClientException

2010-06-28 Thread seakey
Hi, I have developed an app with GWT 2.0.3 + Eclipse-Plugin. Now, I have tried to compile my app, but this causes a org.tigris.subversion.javahl.ClientException: org.tigris.subversion.subclipse.core.SVNException: org.tigris.subversion.javahl.ClientException: svn: Directory

Re: Compiling GWT-App causes org.tigris.subversion.javahl.ClientException

2010-06-28 Thread seakey
It seems, that the compile-process deletes the .svn-folder in [...]/ PDFLibrary/war/pdflibrary: First, the .svn-folder exists, but after compiling, it disappears. But why? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Soliciting approaches for GWT and XSS-prevention

2010-06-28 Thread Erem
Hey guys, Most security papers I've read on the topic of XSS prevention suggest escaping untrusted strings in a context-sensitive way in server side templating languages. However I sense that it's different with GWT (and any other JS applications) in that received data from a data source can be

Custom Mobile View for existing GWT app - detecting the mobile browser

2010-06-28 Thread TomJanssens
Hello, I have a large app written in GWT and I want to create a mobile view of the app (with limited features). The user interface and features of the app should be completely adapted to the smaller screen size of the mobile device. However, I have the following obstacles: 1. How do I detect the

Re: how to use GIN ?

2010-06-28 Thread yves
Thank you for these explanations, I think I begin to understand GIN. .. and I'll read the Guice tutorials :-) (or may be :-( yet another tuto...) Yves PS to GIN team : please make GIN simple to understand for those who don't know Guice and are just trying to improve their client code. I only

Re: CSS Localization

2010-06-28 Thread Dan Dumont
AMAZING! is that documented anywhere? I saw no mention on the css section of the building user interfaces part of the docs. On Mon, Jun 28, 2010 at 4:44 AM, Thomas Broyer t.bro...@gmail.com wrote: On 28 juin, 03:53, Dan ddum...@gmail.com wrote: Is it possible to localize the css in a

Re: Seam and GWT DE RPC

2010-06-28 Thread Flori
- Make sure that you use on server and client the same gwt- servlet.jar! - Make sure all the server files are compiled and are available as class files in the ear or rather war (and in the right place). Maybe it helps. I will try in the near future whether it is possible to use the GWT Dispatch

BigDecimal - Can you add it to 2.1 version

2010-06-28 Thread Dor
Hi All, I am responsible on innovative financial platform which is based on GWT. One of our problems is the lack of BigDecimal on client side. Because of this lack we are using double / Double object and many other manipulations to overcome this lack. Consider for example, having a number like

Initializing AppEngine server

2010-06-28 Thread Lu
Hi, When I create a new google web application by using eclipse, it cannot implement the basic example (web application starter project). I run this example by using 'debug as web application'. The error is 'URL.init(URL, String, URLStreamHandler) line: not available'. This is weird because it

recover ur formated data

2010-06-28 Thread Bikram Rai
Have you lost Your important data? or formated or deleted or .. don't worry you can recover your lost data. for details *recoverdatac.blogspot.com* * * Thank You. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

GWT Confluence Plugin

2010-06-28 Thread krude
Has anyone deployed a GWT app as an Atlassian plugin for Confluence and have an example of it? I have had a hard time finding anything but I believe it is possible. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: Cancel submit form

2010-06-28 Thread eirc
Hello I have the exact same problem. Did you find a workaround? On May 25, 1:13 pm, Olivier oliv...@digiworks.es wrote: Hi, I'm trying to cancel a submit form event and it doesn't seems to work. I'm using UI Binder,  this is the code I have : @UiHandler(form) void onSubmit(SubmitEvent

Problem with Button and onClick-Event

2010-06-28 Thread Björn
Hi there, I have a problem with the behavior of a Button in IE6. When pressing the key enter on a Button in IE6, the onClick-Event is fired. The Bug can be reproduced with the following Code: final Button button = new Button(Hello); button.addClickListener(new ClickListener() {

Open File on client side.

2010-06-28 Thread alan
I would like to open a file on the client side, so it can populate a local (client-side) table. (After validating of course). The data is not needed on the server side. What is the best way to do this? It seems uploading the file to the server would be wasteful, but can you open the file on the

Re: BigDecimal - Can you add it to 2.1 version

2010-06-28 Thread Jim Douglas
http://code.google.com/p/google-web-toolkit/issues/detail?id=1857 http://code.google.com/p/google-web-toolkit/issues/detail?id=4685 On Jun 28, 5:39 am, Dor dor...@gmail.com wrote: Hi All, I am responsible on innovative financial platform which is based on GWT. One of our problems is the

Re: Open File on client side.

2010-06-28 Thread Jon Gorrono
With the new W3C File API you could access files that are picked (by the user) using an input tag or dropped via mouse (etc) over the browser window, but AFAIK FF 3.6 is the only browser that supports it now. @ Google IO, the comments from the GWT team were that as soon as there is more browser

Re: compile problems with GWT 2.1

2010-06-28 Thread slowpoison
I have the same problem!! Any clues? -- 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-tool...@googlegroups.com. To unsubscribe from this group, send email to

Anybody find the Contacts2 example confusing and complicated?

2010-06-28 Thread JosephLi
hi all, I am trying to follow along the whats in http://code.google.com/ webtoolkit/articles/mvp-architecture-2.html, however the code that I downloaded from that same page doesn't match what is being shown on the page. It contains the same set of class and the methods does the roughly the same

Re: compile problems with GWT 2.1

2010-06-28 Thread JosephLi
Not sure if my GWT Eclipse plugin is older version, but it seems to work for me on STS 2.3.3.M1. And I install the GWT plugin via http:// dl.google.com/eclipse/plugin/3.5. I can create GWT project directly from STS and it runs without problem. I was able to follow and finish the StockWatcher

Anyone finds Contacts2 confusing?

2010-06-28 Thread JosephLi
hi all, I am trying to follow along whats in http://code.google.com/ webtoolkit/articles/mvp-architecture-2.html and I am just thinking that it requires too many classes and generics to construct a simple CRUD app for a single entity? I am posting this just to see if anyone feels the same

Re: CSS Localization

2010-06-28 Thread Qian Qiao
On Tue, Jun 29, 2010 at 05:32, Dan Dumont ddum...@gmail.com wrote: AMAZING! is that documented anywhere?   I saw no mention on the css section of the building user interfaces part of the docs. On Mon, Jun 28, 2010 at 4:44 AM, Thomas Broyer t.bro...@gmail.com wrote: On 28 juin, 03:53, Dan

Re: Soliciting approaches for GWT and XSS-prevention

2010-06-28 Thread Sripathi Krishnan
With GWT, you are isolated to the following attack vectors - 1. Using native eval() 2. Using setInnerHTML() methods 3. Using non-gwt javascript code/thirdparty js libraries 4. XSS on the host html/jsp page Check-list to prevent XSS for GWT applications - - Don't EVER use eval()

Re: GWT Confluence Plugin

2010-06-28 Thread Tom Davies
On Jun 29, 5:27 am, krude kirstr...@gmail.com wrote: Has anyone deployed a GWT app as an Atlassian plugin for Confluence and have an example of it? I have had a hard time finding anything but I believe it is possible. What exactly do you want to do? i.e. which part of the Confluence UI do you

[gwt-contrib] Fix issue 5065: Float.parseFloat and Double.parseDouble are too strict validating input (issue647802)

2010-06-28 Thread t . broyer
Reviewers: , Description: Make Float.parseFloat/valueOf and Double.parseDouble/valueOf accept strings with a float type suffix, such as 1.0f or 1.0d. Please review this at http://gwt-code-reviews.appspot.com/647802/show Affected files: user/super/com/google/gwt/emul/java/lang/Number.java

[gwt-contrib] WebSockets in GWT

2010-06-28 Thread Marko Vuksanovic
Are web sockets going to be implemented in GWT any time soon? Does google or more precisely, GWT team, have that in the roadmap? -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Making StackLayoutPanel#showWidget(Widget) call showWidget(int) for legacy support. Ditto to Ta... (issue641802)

2010-06-28 Thread jlabanca
Reviewers: jgw, Description: Making StackLayoutPanel#showWidget(Widget) call showWidget(int) for legacy support. Ditto to TabLayoutPanel. Please review this at http://gwt-code-reviews.appspot.com/641802/show Affected files: M user/src/com/google/gwt/user/client/ui/StackLayoutPanel.java M

Re: [gwt-contrib] WebSockets in GWT

2010-06-28 Thread John Tamplin
On Mon, Jun 28, 2010 at 12:50 PM, Marko Vuksanovic markovuksano...@gmail.com wrote: Are web sockets going to be implemented in GWT any time soon? Does google or more precisely, GWT team, have that in the roadmap? I am working on WebSockets in general, and the GWT bindings will probably look

[gwt-contrib] [google-web-toolkit] r8321 committed - DefaultSelectionModel#setSelected currently adds an exception even if ...

2010-06-28 Thread codesite-noreply
Revision: 8321 Author: jlaba...@google.com Date: Mon Jun 28 07:32:05 2010 Log: DefaultSelectionModel#setSelected currently adds an exception even if the default selection state equals the specified state. Also adds test cases for all selection models. Review at

[gwt-contrib] Adding NoSelectionModel, which allows selection without saving the selection state. (issue667801)

2010-06-28 Thread jlabanca
Reviewers: jgw, Description: Adding NoSelectionModel, which allows selection without saving the selection state. Please review this at http://gwt-code-reviews.appspot.com/667801/show Affected files: M bikeshed/src/com/google/gwt/sample/expenses/gwt/client/ExpenseList.java M

[gwt-contrib] Re: Making StackLayoutPanel#showWidget(Widget) call showWidget(int) for legacy support. Ditto to Ta... (issue641802)

2010-06-28 Thread jgw
On 2010/06/28 16:54:55, jlabanca wrote: LGTM http://gwt-code-reviews.appspot.com/641802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fix external issue 5052 - JSONParser.parse exceptions with some unicode characters (issue659801)

2010-06-28 Thread דניאל רייס
On Fri, Jun 25, 2010 at 6:18 PM, t.bro...@gmail.com wrote: Just like in plain JavaScript, the following would actually create an ab property with no trace of char (tested in Safari 5 on Windows): var o = {}; o['a\u2028b'] = 'c'; That's a bug in JavaScriptCore that can hardly be worked

[gwt-contrib] Re: Fix issue 5065: Float.parseFloat and Double.parseDouble are too strict validating input (issue647802)

2010-06-28 Thread rice
LGTM http://gwt-code-reviews.appspot.com/647802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fix issue 5065: Float.parseFloat and Double.parseDouble are too strict validating input (issue647802)

2010-06-28 Thread rice
Thanks for the patch, I'll submit it. Dan On 2010/06/28 18:07:14, Dan Rice wrote: LGTM http://gwt-code-reviews.appspot.com/647802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r8323 committed - Making StackLayoutPanel#showWidget(Widget) call showWidget(int) for le...

2010-06-28 Thread codesite-noreply
Revision: 8323 Author: jlaba...@google.com Date: Mon Jun 28 08:24:06 2010 Log: Making StackLayoutPanel#showWidget(Widget) call showWidget(int) for legacy support. Ditto to TabLayoutPanel. Review at http://gwt-code-reviews.appspot.com/641802 Review by: j...@google.com

[gwt-contrib] [google-web-toolkit] r8324 committed - Adding json-1.5 jar that contains 1.5 compatible bytecode so that GWT ...

2010-06-28 Thread codesite-noreply
Revision: 8324 Author: amitman...@google.com Date: Mon Jun 28 11:49:58 2010 Log: Adding json-1.5 jar that contains 1.5 compatible bytecode so that GWT users can use java 1.5 to build apps with GWT. Patch by: amitmanjhi Review by: rjrjr, fabbott (TBR)

[gwt-contrib] Patch by T. Broyer - Fix issue 5065: Float.parseFloat and Double.parseDouble are too strict vali... (issue661802)

2010-06-28 Thread rice
Reviewers: Ray Ryan, Description: Patch by T. Broyer - Fix issue 5065: Float.parseFloat and Double.parseDouble are too strict validating input (issue647802) Please review this at http://gwt-code-reviews.appspot.com/661802/show Affected files: M

[gwt-contrib] Re: Setting the default selection model in DefaultNodeInfo to null. Having a selection model per nod... (issue657801)

2010-06-28 Thread jlabanca
committed as r8326 http://gwt-code-reviews.appspot.com/657801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fix external issue 5052 - JSONParser.parse exceptions with some unicode characters (issue659801)

2010-06-28 Thread rice
http://gwt-code-reviews.appspot.com/659801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r8327 committed - Column should not use a singleton FieldUpdater because the Cell may ha...

2010-06-28 Thread codesite-noreply
Revision: 8327 Author: gwt.mirror...@gmail.com Date: Mon Jun 28 12:12:17 2010 Log: Column should not use a singleton FieldUpdater because the Cell may hang on to the FieldUpdater. We now create a new instance each time. Review at http://gwt-code-reviews.appspot.com/620803 Review by:

[gwt-contrib] Re: Column should not use a singleton FieldUpdater because the Cell may hang on to the FieldUpdater.... (issue620803)

2010-06-28 Thread jlabanca
committed as r8327 http://gwt-code-reviews.appspot.com/620803/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] proposing a hypothetically breaking change to gwt-servlet.jar: comments?

2010-06-28 Thread Freeland Abbott
So, this becomes a very breaking change if we say we want to go all the way right: we would have to repackage com.google.gwt.core.client.JavaScriptObject com.google.gwt.core.client.GWT com.google.gwt.core.client.JsArray com.google.gwt.core.client.JavaScriptException

[gwt-contrib] Replacing PagingListView.setPageStart/Size with PagingListView.setRange. Replacing CellListImpl... (issue614803)

2010-06-28 Thread jlabanca
Reviewers: jgw, Description: Replacing PagingListView.setPageStart/Size with PagingListView.setRange. Replacing CellListImpl with PagingListViewPresenter, which makes the implementation easier to test and reuse. Adding lots of tests. Please review this at

[gwt-contrib] Re: Add a simple remote log handler, and update the sample to use it (issue626802)

2010-06-28 Thread unnurg
http://gwt-code-reviews.appspot.com/626802/diff/1/4 File samples/logexample/war/WEB-INF/web.xml (right): http://gwt-code-reviews.appspot.com/626802/diff/1/4#newcode7 samples/logexample/war/WEB-INF/web.xml:7: servlet-classcom.google.gwt.sample.logexample.server.LoggingServiceImpl/servlet-class

Re: [gwt-contrib] proposing a hypothetically breaking change to gwt-servlet.jar: comments?

2010-06-28 Thread Freeland Abbott
GWT is imported by com/google/gwt/user/*server*/rpc/impl/SerializabilityUtil.java (for isClient()), com/google/gwt/valuestore/*shared*/impl/RecordJsoImpl.java (for isScript()), com/google/gwt/rpc/*client-but-becomes-shared*/impl/SimplePayloadSink.java (for isScript()), and

[gwt-contrib] Re: Add a simple remote log handler, and update the sample to use it (issue626802)

2010-06-28 Thread unnurg
http://gwt-code-reviews.appspot.com/626802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Add a simple remote log handler, and update the sample to use it (issue626802)

2010-06-28 Thread fredsa
LGTM http://gwt-code-reviews.appspot.com/626802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Replacing PagingListView.setPageStart/Size with PagingListView.setRange. Replacing CellListImpl... (issue614803)

2010-06-28 Thread jlabanca
http://gwt-code-reviews.appspot.com/614803/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

  1   2   >