Re: Unit testing of generators

2011-03-09 Thread Tobias
Actually I was referring to if I needed to use GWT trunk to be able to use RealJavaResource, because it causes some problems. But I came across the problem you mentioned shortly after and your answer proved very helpful, thank you. I now put my testing code into a different eclipse project to

java.util.ConcurrentModificationException after installing GWT 2.2

2011-03-09 Thread tdk
After installing GWT 2.2.0 I keep getting the following error when trying to start my app in Dev Mode: init: deps-module-jar: deps-ear-jar: deps-jar: library-inclusion-in-archive: library-inclusion-in-manifest: Compiling 2 source files to C:\Development\IcsContinuity\Webinterface

Using one Activity on two different places, with different funtionallity

2011-03-09 Thread Alex
Hello! I'am new to gwt and would like some help regardning Activities and Places. I got two different pages (places) where I would like to use the same activity class. However, the functionallity should be different in the two different places. For example, one of the place should show an add

Re: RequestFactoryServlet mapping question

2011-03-09 Thread Thomas Broyer
You can map the servlet twice to make it available at two distinct URLs (a single servlet, two servlet-mappings) ...or you could change your app/admin app to use ../gwtRequest instead of gwtRequest: construct a

Re: RequestFactoryServlet mapping question

2011-03-09 Thread opn
Thanks a lot Thomas! You are so helpful, unbelievable! Right now i chose to map it to two URLs and it works perfect! It's the easiest solution! You are really into the RequestFactory stuff! Keep up the good work! On Mar 9, 10:12 am, Thomas Broyer t.bro...@gmail.com wrote: You can map the

Re: Using one Activity on two different places, with different funtionallity

2011-03-09 Thread Juan Pablo Gardella
You must define 2 places. In one place put the add button in the other place put the remove button. 2011/3/9 Alex alec.lin...@gmail.com Hello! I'am new to gwt and would like some help regardning Activities and Places. I got two different pages (places) where I would like to use the same

Button click event handling in a FlexTalbe using MVP (GWT 2.2)

2011-03-09 Thread seongjoo
Hello, I am having some trouble with handling button click event when the button is a widget of a FlexTable utilizing MVP framework. Getting a selected row of the FlexTable is well explained as tutorial source code, but button click event is not. The buttons are created dynamically when the

Re: java.util.ConcurrentModificationException after installing GWT 2.2

2011-03-09 Thread Juan Pablo Gardella
Is SmartGWT compatible with GWT 2.2? See http://groups.google.com/group/google-web-toolkit-contributors/browse_thread/thread/3171958b76f90ddb Juan 2011/3/9 tdk kloe...@ics.de After installing GWT 2.2.0 I keep getting the following error when trying to start my app in Dev Mode: init:

Re: Button click event handling in a FlexTalbe using MVP (GWT 2.2)

2011-03-09 Thread Juan Pablo Gardella
Add the handler for every button. I don't understand your problem Juan 2011/3/9 seongjoo seongjoo@gmail.com Hello, I am having some trouble with handling button click event when the button is a widget of a FlexTable utilizing MVP framework. Getting a selected row of the FlexTable is

Re: CellTable enter edit mode on focus of cell?

2011-03-09 Thread feuse8
On 18 Jan., 18:28, piehole peter.hay...@parivedasolutions.com wrote: 2. Is there any way to useTABand SHIFT-TABto navigate between columns instead of LEFT-ARROW and RIGHT-ARROW?CellTableseems to be hardcoded to use left and right arrows and difficult to extend. Does anybody have a solution

Re: Button click event handling in a FlexTalbe using MVP (GWT 2.2)

2011-03-09 Thread Jens
Easiest way would be to define a doEdit(String data) method in your presenter interface (or in an extra delegate interface) and pass the presenter/the delegate interface to your view (via setData or an extra method) setData would then do something like: final String data = data.get(i); Button

DropDown Button

2011-03-09 Thread gadaleta.marco
hello everyone, there a way to create a button in gwt like gmail more actions button without using external library? Thx, hope you can help me. -- 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: Disabling certain dates in datepicker failing

2011-03-09 Thread ALB-PSP-DV1
Thank you the solution worked. It disables the date in the datepicker. However the user can still enter the date manually in textbox. I handled it by displaying a error message conditionally on addValueChangeHandler. -- You received this message because you are subscribed to the Google Groups

Code changes not reflected on browser refresh

2011-03-09 Thread Andrew
Hi- I'm using Eclipse 3.5.2 under Ubuntu with Google Web Toolkit SDK 2.2.0, and Google App Engine Java SDK 1.4.2. Recently I worked through the StockWatcher example, found at http://code.google.com/webtoolkit/tools/gwtdesigner/tutorials/stockwatcher.html It used to work such that I could make

GWT processing of Set-Cookie Response header

2011-03-09 Thread Steve Hunt
Hi, I'm working on an app that is using a GWT UI but accessing an existing WADL resource using a request builder and ResponseCallback. On the initial login call to the service the remote server returns a JSessionId cookie as a Set-Cookie header parameter. In normal circumstances (ie if I access

Installing GWT to eclipse 3.6 (helios)

2011-03-09 Thread Rajeshwar Mitra
I'm trying install GWT SDK and GWT designer. The installation getting aborted in between. Approximately after downloading about 50% of the contents. I'm exactly following the steps provided in the GWT site. I tried downloading the archive file and installing through that. In that case as well it

Run external exe in gwt server-side

2011-03-09 Thread trudi1990
Hi, it's possible to run external exe or vbs file from server side code in gwt web application ? -- 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

Question/Challenge with CSS Style vs DialogBox

2011-03-09 Thread Michel Pikkaart
Thank you for reading this, In short, I have a challenge with a Style called element.style and a Dialog Box, the box is square and I would like it wider, as I change some styles of the panel which I put in as widget, the inside Panel grows, but the Dialog Box is stubborn and stays square in

Re: Question/Challenge with CSS Style vs DialogBox

2011-03-09 Thread Michel Pikkaart
Seems I should read forums better. My apologies.. Problem solved, should remove some default css styles like: .gwt-DialogBox { width: 350px; } See Post

java.io.IOException: Stream closed after Session timeout

2011-03-09 Thread andrew
Hi, we have a special problem with a GWT app running on Tomcat. The problem occurs, after the session has been invalidated and user tries to make a call. We get this exception: SEVERE: Exception while dispatching incoming RPC call java.io.IOException: Stream closed at

Re: Run external exe in gwt server-side

2011-03-09 Thread Jan Mostert
Compiled GWT code runs clientside, on the serverside (which can be anything from python, java, php, ...) you can run almost anything if you have the permissions to do so and if it's supported on that platform. -- Jan Vladimir Mostert BEngSci MyCee Technologies On Wed, Mar 9, 2011 at 1:32 PM,

Re: GWT processing of Set-Cookie Response header

2011-03-09 Thread Y2i
Does this happen in dev mode? There seem to be some issues with it http://code.google.com/p/google-web-toolkit/issues/detail?id=4181 http://code.google.com/p/google-web-toolkit/issues/detail?id=4181 http://code.google.com/p/google-web-toolkit/issues/list?can=2q=cookie -- You received this

External Tomcat in hosted mode

2011-03-09 Thread Eduardo Palma
I'm working on a project that's currently using: GWT - 2.0.4 Spring - 3.0.5 Hibernate - 3.3.1 Maven - 2.2.1 Google Plug in for Eclipse 3.6(HELIOS) - 2.2.0 I'm having a lot of troubles using the embedded jetty on this project. I already tried many workarounds but nothing worked. So now

javax.naming.InitialContext is not supported by Google App Engine's Java runtime environment

2011-03-09 Thread kenshin
Hi, as the subject described, I've got this issue in my code as follow: InitialContext ctx = new InitialContext(); Does anyone gets familiar with this problem? Hope to see the solution soon, Thanks! -- You received this message because you are subscribed to the Google Groups Google Web

Possible to use RequestFactory with a non-java server?

2011-03-09 Thread fturtle
Hi, Is it possible to use RequestFactory with a non-java server (maybe by creating a custom requestfactory transport?). Was request factory designed with this in mind. I'm looking to map it to a restful json service. Many thanks, fturtle -- You received this message because you are subscribed

Re: Code split of client bundle

2011-03-09 Thread Fotos Georgiadis
It's kinda impossible to provide help with the description of the problem you gave. So in general I suggest you read again the documentation for code splitting: http://code.google.com/webtoolkit/doc/latest/DevGuideCodeSplitting.html Also you should produce a compile report as mentioned here

Re: Editor Framework for large set of properties

2011-03-09 Thread Y2i
If the properties you are retrieving via RequestFactory are getters/setters on EntityProxy/ValueProxy interfaces then you can use RequestFactoryEditorDriver. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: Code changes not reflected on browser refresh

2011-03-09 Thread Chris Conroy
You need to point your browser at http://localhost:?gwt.codesvr=127.0.0.1:9997 (assuming you are running with the default settings). This URL also shows up in the DevMode tab when it starts up in Eclipse for you to copy paste or launch your browser. On Wed, Mar 9, 2011 at 3:23 AM, Andrew

Re: Issue with ValueListBox

2011-03-09 Thread Thomas Broyer
ValueListBox automatically adds any value passed to setValue() to the list of acceptable values, so you probably have some setValue(null) somewhere, or it might rather be that you don't have a setValue() anywhere, so the ValueListBox tries to select the default value (null) in the list, and

Re: Printing; controlling top and bottom page margins

2011-03-09 Thread Jeff Chimene
On 03/08/2011 05:39 PM, Rob Tanner wrote: Hi, Found a great little class to enable me to print the contents of panels. Here's the URL: http://gwt-commons-sandbox.googlecode.com /svn/branches/freller/gwt-commons/src/org/gwtcommons/user/ client/Print.java I'm printing the

Issue with ValueListBox

2011-03-09 Thread Steve
Having an issue with ValueListBox in GWT 2.1. I'm probably just doing something wrong! I build a ValueListBox: storeListBox = new ValueListBoxStores(new RendererStores() { @Override public String render(Stores object) {

MySQL server in development mode

2011-03-09 Thread Erel Segal
I added a mysql server to the default GWT application. I put the mysql connector jar in the lib folder under WEBINF, and also added it to the build path. I ran the web application in development mode and it worked fine. But then I restarted the server (from the eclipse development pane), and I

RequestFactory + Hibernate + MySql + OrphanRemoval = not working.

2011-03-09 Thread Vasily
Hi All, have simple case: @RooJavaBean @RooToString @RooEntity public class Contact { @OneToMany(cascade=CascadeType.ALL, fetch = FetchType.EAGER, mappedBy=contact, orphanRemoval=true) private ListPhone phoneList = new ArrayListPhone(); } @RooJavaBean @RooToString @RooEntity public class Phone{

GWT eclipse plugin doesn't recognize bundle resources on classpath

2011-03-09 Thread bconoly
Hey All, I just reinstalled the gwt eclipse plugin so I could start experimenting with the uibinder and what we like to do is separate out our static resources from our java files. In the standard maven way we put these resources in our src/main/resource folder which works great, is on our

Re: MySQL server in development mode

2011-03-09 Thread Juan Pablo Gardella
Is classpath error problem. Show the .classpath file Juan 2011/3/9 Erel Segal erel...@gmail.com I added a mysql server to the default GWT application. I put the mysql connector jar in the lib folder under WEBINF, and also added it to the build path. I ran the web application in development

Re: External Tomcat in hosted mode

2011-03-09 Thread Juan Pablo Gardella
Try download an emtpy eclipse and configure it again. And use the plugin for GWT 2.0.4, no for GWT 2.2.0. It woks. Juan 2011/3/9 Eduardo Palma eduardo.palma...@gmail.com I'm working on a project that's currently using: GWT - 2.0.4 Spring - 3.0.5 Hibernate - 3.3.1 Maven - 2.2.1 Google

Re: GWT-Designer bug ?

2011-03-09 Thread Eric Clayberg
Are you using Maven? This looks like a Maven-related issue we have seen before. Have you tried the latest GWT Designer build? http://code.google.com/webtoolkit/tools/download-gwtdesigner-beta.html On Mar 8, 5:44 pm, khiem nguyen khi...@googlemail.com wrote: sorry Version: Helios Service

Re: RequestFactory + Hibernate + MySql + OrphanRemoval = not working.

2011-03-09 Thread Juan Pablo Gardella
Where are you this? Post the code Juan 2011/3/9 Vasily vasiliy.ru...@gmail.com Hi All, have simple case: @RooJavaBean @RooToString @RooEntity public class Contact { @OneToMany(cascade=CascadeType.ALL, fetch = FetchType.EAGER, mappedBy=contact, orphanRemoval=true) private ListPhone

Re: RequestFactory + Hibernate + MySql + OrphanRemoval = not working.

2011-03-09 Thread Juan Pablo Gardella
Sorry my english... Where are you do the operation? Paste the code Juan 2011/3/9 Juan Pablo Gardella gardellajuanpa...@gmail.com Where are you this? Post the code Juan 2011/3/9 Vasily vasiliy.ru...@gmail.com Hi All, have simple case: @RooJavaBean @RooToString @RooEntity public class

Re: External Tomcat in hosted mode

2011-03-09 Thread Martin Trummer
here's a good description: http://code.google.com/eclipse/docs/faq.html#gwt_with_maven On Mar 9, 3:34 pm, Eduardo Palma eduardo.palma...@gmail.com wrote: I'm working on a project that's currently using:   GWT - 2.0.4   Spring - 3.0.5   Hibernate - 3.3.1   Maven - 2.2.1   Google Plug in for

Re: Possible to use RequestFactory with a non-java server?

2011-03-09 Thread David Chandler
It's theoretically possible because RF is JSON-based, but hasn't been done yet to my knowledge. /dmc On Wed, Mar 9, 2011 at 10:00 AM, fturtle funkingb...@gmail.com wrote: Hi, Is it possible to use RequestFactory with a non-java server (maybe by creating a custom requestfactory transport?).

Datagrid Json

2011-03-09 Thread Marco Gadaleta
Hi, this is the possibility to use json object inside celltable ? I hope in a response. Thx, -- Marco -- 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

Re: Editor Framework for large set of properties

2011-03-09 Thread Kathiravan Tamilvanan
I have some properties which are getters and setters. But i also have a map of properties which are to be shown on the UI. Is there anyway to use the editor driver to connect the map of properties to the UI fields. -- You received this message because you are subscribed to the Google Groups

Re: Editor Framework for large set of properties

2011-03-09 Thread Thomas Broyer
You can probably have an EditorMapK, V, but you'd have to either make it a LeafValueEditorMapK, V (probably not what you want: this means the Editor framework gives you the map for you to edit it) or some sort of MapEditor extending CompositeEditor (have a look at how ListEditor works). Note

Re: Possible to use RequestFactory with a non-java server?

2011-03-09 Thread Andi
hey fturtle, please take a look at restygwt. it works very well for us :) andi (vom fon) On 09.03.2011, at 16:00, fturtle funkingb...@gmail.com wrote: Hi, Is it possible to use RequestFactory with a non-java server (maybe by creating a custom requestfactory transport?). Was request

Re: Issue with ValueListBox

2011-03-09 Thread Steve
On Mar 9, 11:27 am, Thomas Broyer t.bro...@gmail.com wrote: ValueListBox automatically adds any value passed to setValue() to the list of acceptable values, so you probably have some setValue(null) somewhere, or it might rather be that you don't have a setValue() anywhere, so the ValueListBox

Re: GWT-Designer bug ?

2011-03-09 Thread khiem nguyen
yes, i'm using maven. will try the latest beta thanx On Wed, Mar 9, 2011 at 5:15 PM, Eric Clayberg clayb...@google.com wrote: Are you using Maven? This looks like a Maven-related issue we have seen before. Have you tried the latest GWT Designer build?

Re: RequestFactory + Hibernate + MySql + OrphanRemoval = not working.

2011-03-09 Thread Vasily
That's fine Juan... Actually, I'm editing Contact with Editor framework via RequestFactoryEditorDriver... List of phones are edited by my custom editor on the base of ListEditor: public class PhoneEditor extends Composite implements IsEditorListEditorPhoneProxy, PhoneEditView { ...

Generic EntityLocator

2011-03-09 Thread Kathiravan Tamilvanan
We have created a BaseEntity with the following fields, - primary key - version - date I have created an ApplicationEntityLocator to get the getID, getVersion, find(Entity) instead of writing them on each entity object. public class EntityLocator extends LocatorBaseEntity, Long {

GWT Testing Window.alert

2011-03-09 Thread Noor
Is it possible to test whether a Window.alert has been launched using Junit GWTTEstCase?? If this is not possible how can I know if a window.alert has been raised?? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: RequestFactory + Hibernate + MySql + OrphanRemoval = not working.

2011-03-09 Thread Juan Pablo Gardella
orphanRemoval is an entirely ORM-specific thing. It marks child entity to be removed when it's no longer referenced from the parent entity, e.g. when you remove the child entity from the corresponding collection of the parent entity. Perhaps don't remove because you have a reference in Contact to

Re: Installing GWT to eclipse 3.6 (helios)

2011-03-09 Thread gina
What's the update site you're trying to install from? On Mar 9, 2:42 am, Rajeshwar Mitra mitra.rajesh...@gmail.com wrote: I'm trying install GWT SDK and GWT designer. The installation getting aborted in between. Approximately after downloading about 50% of the contents. I'm exactly following

Re: RequestFactory + Hibernate + MySql + OrphanRemoval = not working.

2011-03-09 Thread Vasily
Ok, I've got an exception... 2011-03-09 22:29:17,230 [btpool0-2] DEBUG org.springframework.orm.jpa.JpaTransactionManager - Initiating transaction rollback after commit exception org.springframework.orm.jpa.JpaSystemException: org.hibernate.HibernateException: A collection with cascade=all-

Re: Code changes not reflected on browser refresh

2011-03-09 Thread Andrew Pikler
Thank you! This fixed it. I had been using that URL in the past, which is why I said it used to work... but for one reason or another, I switched to using just http://localhost: for another app where that URL worked, and didn't realize I had to go back to the long URL for this one. On Wed,

Where to find latest GWT IE developer plugin for offline installation?

2011-03-09 Thread Yaakov
Hi, Could someone share a URL where I can get the latest GWT IE developer plugin? However, I need one that can be installed into IE on a machine that's disconnected from the Internet. Thanks, Yaakov. -- You received this message because you are subscribed to the Google Groups Google Web

Re: RequestFactoryEditorDriver example?

2011-03-09 Thread Vasily
Hi All, public class Contact { @OneToMany(cascade=CascadeType.ALL, fetch = FetchType.EAGER,mappedBy=contact, orphanRemoval=true) private ListPhone phoneList = new ArrayListPhone(); } public class Phone { @ManyToOne(optional = false) private Contact contact; } I've got an exception during

Re: Editor Framework for large set of properties

2011-03-09 Thread Kathiravan Tamilvanan
Thanks Thomas. I am returning a ListParameterProxy from the RequestFactory. Is it the correct that ListEditor can only have homogeneous children widget types? The requirement for me is to use different widget types based on the Parameter types. ( could be text field, checkbox and so on). We

CellTable Refreshing Issues With Safari

2011-03-09 Thread Oleksi Derkatch
Hey, I am having a problem adding rows to a CellTable in Safari. It seems that Safari doesn't render the content of the CellTable occasionally. That is, the ListDataProvider table has data, but it's not being reflected in the cell table widget. Refreshing the page sometimes solves this issue. In

Re: Netbeans plugin

2011-03-09 Thread Radoslav
Hi Andras, Yes, I am using it. Rad -- 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 group, send email to

GWT Designer - full version

2011-03-09 Thread Eve
For evaluation, is the full version available for download anywhere? I can only find the Eclipse plug-in from the download site. thanks -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

2.2.0 - EditTextCell - How to reset previous value

2011-03-09 Thread bobbassen
I am having trouble retreiving the previous value of the the cell and placing it back on the actual table in the panel/ I am trying to capture when user enters a blank. I am posting an alert message but I am not able to retrieve and display the original value. I see options to do this in the

Problem using activemq with GWT

2011-03-09 Thread Ramya
Hi, I am using activemq inside a GWT project. I follwed the steps give in http://code.google.com/p/gwt-activemq/.. But when I run the GWT project I get the following error: [ERROR] javax.servlet.ServletContext log: unavailable java.security.AccessControlException: access denied

Unable to download zipped plugin site

2011-03-09 Thread GWT Group
Hi - I have tried multiple times to download from this site: http://code.google.com/eclipse/docs/install-from-zip.html to install the GWT plugin for Eclipse 3.5 (Galileo). I keep getting a timeout error. I'm using Firefox via a proxy server which works fine for all other downloads. I don't have

Overriding JSNI methods causes crash ?

2011-03-09 Thread Pierre
Hi all, I am experiencing problems when using GWT / JSNI : For tests, let's have a parent class with a JSNI method such as public class TestParent { public native void show()/*-{ $doc.write(PARENT JSNI); }-*/; } and a child class overriding the parent JSNI

Re: GWT Designer - full version

2011-03-09 Thread András Csányi
The eclipse version isnt the full version? On 9 Mar 2011 22:00, Eve ng8...@gmail.com wrote: For evaluation, is the full version available for download anywhere? I can only find the Eclipse plug-in from the download site. thanks -- You received this message because you are subscribed to the

Re: Netbeans plugin

2011-03-09 Thread András Csányi
I was clearing my head abnd reinstall again and its working fine. On 8 Mar 2011 17:39, khiem nguyen khi...@googlemail.com wrote: there's one, works with normal AsyncService , just go to preference-plugins... u'll find it. but i dont think u can use GWT-Designer. if u u maven, it doesnt matter

Re: RequestFactoryEditorDriver example?

2011-03-09 Thread Thomas Broyer
I don't know JPA/JDO much, but wouldn't implementing the setPhoneList as a clear/addAll fix it? -- 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

Re: GWT Designer - full version

2011-03-09 Thread gina
You can install GWT Designer from the Updates sites found here... http://code.google.com/webtoolkit/tools/download-gwtdesigner.html On Mar 9, 1:02 pm, András Csányi sayusi.a...@gmail.com wrote: The eclipse version isnt the full version? On 9 Mar 2011 22:00, Eve ng8...@gmail.com wrote: For

Re: RequestFactoryEditorDriver example?

2011-03-09 Thread Vasily
Yes, thank you! I already found a description of that exception and can confirm, what modifying of setter for phoneList as you described solving the issue. Thanks for your time! On Mar 10, 12:08 am, Thomas Broyer t.bro...@gmail.com wrote: I don't know JPA/JDO much, but wouldn't implementing the

Re: Unable to run GWTP app after migration to 2.2

2011-03-09 Thread natas
I'm having the same issue :s On Feb 21, 9:18 pm, Karthik karthik...@gmail.com wrote: I need a solution to the following problem : I am running eclispe 3.6, GWT 2.2, Guice 3.0 rc2, gin 10 r137 and gwt- p 0.5, the code compiles fine but when I try to run the app i end up with the following

Class files in src directory? (Google Eclipse Plugin Debug Mode)

2011-03-09 Thread euzuro
I seem to have run up against a wall and am curious if anyone else out there has seen this behaviour. I perform the following steps: - Get latest from trunk of repository - Refresh Project in Navigator view of Eclipse - Check svn status - no modified files - Project-Clean...

Re: javax.naming.InitialContext is not supported by Google App Engine's Java runtime environment

2011-03-09 Thread JosephLi
A limitation of GAE, bottom of the page indicated JNDI lookup is not supported: http://code.google.com/appengine/docs/java/config/webxml.html -- 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: Unable to run GWTP app after migration to 2.2

2011-03-09 Thread Christofer Jennings
You need to get GWTP 0.6 for GWT 2.2.0 see: http://groups.google.com/group/gwt-platform/browse_thread/thread/21e40e8d332a667e# Hope this helps. ,boz On Mar 9, 2011, at 3:56 PM, natas wrote: I'm having the same issue :s On Feb 21, 9:18 pm, Karthik karthik...@gmail.com wrote: I need a

Re: java.util.ConcurrentModificationException after installing GWT 2.2

2011-03-09 Thread tdk
Juan, On 9 Mrz., 12:37, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: Is SmartGWT compatible with GWT 2.2? Seehttp://groups.google.com/group/google-web-toolkit-contributors/browse... thanx for the link, good point! But, alas, it doesn't apply for my case. I don't get any error as

[gwt-contrib] Re: Comment on BeanValidation in google-web-toolkit

2011-03-09 Thread codesite-noreply
Comment by mail.mic...@googlemail.com: Where is the com.google.gwt.validation package? I cannot find it For more information: http://code.google.com/p/google-web-toolkit/wiki/BeanValidation -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Typo in javadocs

2011-03-09 Thread T
As I remember, there is also a legacy out directory mentioned in javadocs (if not specified, current directory is used instead). I've found out empirically, that extra directory is used now, and nothig gets genereted if it's not specified :) Thomas On 8 Mar, 16:46, Stephen Chenney

[gwt-contrib] Replacing the testng-5.14.1.jar with testng-5.14.1-nojunit.jar in the gwt-user .classpath file. ... (issue1377803)

2011-03-09 Thread jlabanca
Reviewers: fabbott, Description: Replacing the testng-5.14.1.jar with testng-5.14.1-nojunit.jar in the gwt-user .classpath file. The testng-5.14.1.jar was removed to allow GWT to use Junit4. Please review this at http://gwt-code-reviews.appspot.com/1377803/ Affected files: M

[gwt-contrib] Re: Replacing the testng-5.14.1.jar with testng-5.14.1-nojunit.jar in the gwt-user .classpath file. ... (issue1377803)

2011-03-09 Thread pdr
On 2011/03/09 15:23:11, jlabanca wrote: LGTM http://gwt-code-reviews.appspot.com/1377803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Replacing the testng-5.14.1.jar with testng-5.14.1-nojunit.jar in the gwt-user .classpath file. ... (issue1377803)

2011-03-09 Thread fabbott
LGTM, too. Shoulda caught that in my change, sorry. On 2011/03/09 15:26:32, pdr wrote: On 2011/03/09 15:23:11, jlabanca wrote: LGTM http://gwt-code-reviews.appspot.com/1377803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Re: Comment on BeanValidation in google-web-toolkit

2011-03-09 Thread Ray Ryan
It's in svn only. We haven't included it in release jars yet, it's too raw. On Mar 9, 2011 4:47 AM, codesite-nore...@google.com wrote: Comment by mail.mic...@googlemail.com: Where is the com.google.gwt.validation package? I cannot find it For more information:

[gwt-contrib] Adding vertical padding to hborder.png in the new Clean style theme to handle large Buttons/Date... (issue1368808)

2011-03-09 Thread jlabanca
Reviewers: pdr, Description: Adding vertical padding to hborder.png in the new Clean style theme to handle large Buttons/DatePickers. Currently, the sprited background images are much too short, so other background sprites will bleed into a button and date picker cells over ~40px tall. Please

[gwt-contrib] [google-web-toolkit] r9826 committed - Replacing the testng-5.14.1.jar with testng-5.14.1-nojunit.jar in the ...

2011-03-09 Thread codesite-noreply
Revision: 9826 Author: jlaba...@google.com Date: Wed Mar 9 04:56:27 2011 Log: Replacing the testng-5.14.1.jar with testng-5.14.1-nojunit.jar in the gwt-user .classpath file. The testng-5.14.1.jar was removed to allow GWT to use Junit4. Review at http://gwt-code-reviews.appspot.com/1377803

[gwt-contrib] [google-web-toolkit] r9827 committed - Adding changing from junit-4.8.2-dep.jar, which lacks the org.hamcrest...

2011-03-09 Thread codesite-noreply
Revision: 9827 Author: fabb...@google.com Date: Wed Mar 9 08:09:53 2011 Log: Adding changing from junit-4.8.2-dep.jar, which lacks the org.hamcrest dependency, to junit-4.8.2.jar, which has it. http://code.google.com/p/google-web-toolkit/source/detail?r=9827 Added: /tools/lib/junit/README

[gwt-contrib] [google-web-toolkit] r9828 committed - Fixing ActionCell and ButtonCell clicks outside of the Button element ...

2011-03-09 Thread codesite-noreply
Revision: 9828 Author: gwt.mirror...@gmail.com Date: Wed Mar 9 08:11:17 2011 Log: Fixing ActionCell and ButtonCell clicks outside of the Button element are ignored. Issue: 5641 Author: hekke, jlabanca Review at http://gwt-code-reviews.appspot.com/1371810 Review by: p...@google.com

[gwt-contrib] Re: Replacing the testng-5.14.1.jar with testng-5.14.1-nojunit.jar in the gwt-user .classpath file. ... (issue1377803)

2011-03-09 Thread jlabanca
committed as r9826 http://gwt-code-reviews.appspot.com/1377803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fixing ActionCell and ButtonCell clicks outside of the Button element are ignored. (issue1371810)

2011-03-09 Thread jlabanca
committed as r9828 http://gwt-code-reviews.appspot.com/1371810/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: PatternValidator matches the whole input string. (issue1378801)

2011-03-09 Thread rchandia
LGTM. It is strange that the pattern has to match the whole string. I would have expected for the developer to be in control of that by using ^ and $ as needed. http://gwt-code-reviews.appspot.com/1378801/diff/1/user/src/com/google/gwt/validation/client/constraints/PatternValidator.java File

[gwt-contrib] Re: Handle custom constraint violation messages. (issue1379801)

2011-03-09 Thread rchandia
LGTM. With nit. http://gwt-code-reviews.appspot.com/1379801/diff/1/user/src/com/google/gwt/validation/client/impl/ConstraintValidatorContextImpl.java File user/src/com/google/gwt/validation/client/impl/ConstraintValidatorContextImpl.java (right):

[gwt-contrib] Re: SafeHtml Rendering for UiBinder (issue1305801)

2011-03-09 Thread xtof
This is really great! It pretty much completely removes uibinder out of the security-relevant codebase. http://gwt-code-reviews.appspot.com/1305801/diff/55001/user/src/com/google/gwt/uibinder/elementparsers/HtmlMessageInterpreter.java File

[gwt-contrib] Re: Let the Key for Maps be of type Object. (issue1376803)

2011-03-09 Thread rchandia
LGTM On 2011/03/09 06:05:49, Nick Chalko wrote: http://gwt-code-reviews.appspot.com/1376803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: SafeHtml Rendering for UiBinder (issue1305801)

2011-03-09 Thread Ray Ryan
Makes sense, but let's file a follow up issue on that rather than block this patch. On Mar 9, 2011 9:04 AM, x...@google.com wrote: This is really great! It pretty much completely removes uibinder out of the security-relevant codebase.

[gwt-contrib] Re: SafeHtml Rendering for UiBinder (issue1305801)

2011-03-09 Thread Christoph Kern
On Wed, Mar 9, 2011 at 09:17, Ray Ryan rj...@google.com wrote: Makes sense, but let's file a follow up issue on that rather than block this patch. SGTM. Sorry for not looking at this earlier :/ On Mar 9, 2011 9:04 AM, x...@google.com wrote: This is really great! It pretty much completely

[gwt-contrib] Issue 6115: RequestFactory: .with(propertyRefs) not always honored (issue1377804)

2011-03-09 Thread t . broyer
Reviewers: rjrjr, bobv, Description: Issue 6115: RequestFactory: .with(propertyRefs) not always honored http://code.google.com/p/google-web-toolkit/issues/detail?id=6115 There are many small changes due to reformats with new formatter rules, sorry for the noise. I've added 2 tests

[gwt-contrib] Re: Fixed validation classifier, added clean plugin to prevent gwt-user from being deployed to GAE, ... (issue1377802)

2011-03-09 Thread rchandia
LGTM http://gwt-code-reviews.appspot.com/1377802/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fixed validation classifier, added clean plugin to prevent gwt-user from being deployed to GAE, ... (issue1377802)

2011-03-09 Thread drfibonacci
http://gwt-code-reviews.appspot.com/1377802/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Adding vertical padding to hborder.png in the new Clean style theme to handle large Buttons/Date... (issue1368808)

2011-03-09 Thread pdr
On 2011/03/09 15:55:18, jlabanca wrote: LGTM http://gwt-code-reviews.appspot.com/1368808/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r9829 committed - Let the Key for Maps be of type Object....

2011-03-09 Thread codesite-noreply
Revision: 9829 Author: gwt.mirror...@gmail.com Date: Wed Mar 9 14:11:18 2011 Log: Let the Key for Maps be of type Object. [JSR 303 TCK Result] 110 of 257 (42.80%) Pass with 20 Failures and 9 Errors. Review at http://gwt-code-reviews.appspot.com/1376803 Review by: rchan...@google.com

[gwt-contrib] [google-web-toolkit] r9830 committed - Updates UiBinder HTML rendering to use SafeHtml. Rather than generati...

2011-03-09 Thread codesite-noreply
Revision: 9830 Author: sbruba...@google.com Date: Wed Mar 9 09:01:28 2011 Log: Updates UiBinder HTML rendering to use SafeHtml. Rather than generating generic HTML strings for HTML objects, the generated binder code creates a SafeHtml template based on the *.ui.xml specs and passes

[gwt-contrib] [google-web-toolkit] r9831 committed - Adding vertical padding to hborder.png in the new Clean style theme to...

2011-03-09 Thread codesite-noreply
Revision: 9831 Author: gwt.mirror...@gmail.com Date: Wed Mar 9 14:15:12 2011 Log: Adding vertical padding to hborder.png in the new Clean style theme to handle large Buttons/DatePickers. Currently, the sprited background images are much too short, so other background sprites will bleed into

[gwt-contrib] [google-web-toolkit] r9832 committed - Fixed validation classifier, added clean plugin to prevent gwt-user fr...

2011-03-09 Thread codesite-noreply
Revision: 9832 Author: drfibona...@google.com Date: Wed Mar 9 09:59:27 2011 Log: Fixed validation classifier, added clean plugin to prevent gwt-user from being deployed to GAE, upgraded to GAE 1.4.2, gwt-maven-plugin 2.2.0 Review at http://gwt-code-reviews.appspot.com/1377802 Review by:

  1   2   >