Re: HTTP query string when tested in development mode

2010-09-21 Thread hezjing
Hi Apparently it seems that it is the Google App Engine that is causing this problem. The servlet filter is able to obtain the query string when I tested in GWT application without the App Engine settings. I'm also new to App Engine, do you know why the servlet filter is not working with App

Re: Evaluating string: (A+sin(B)) where A=1, B=2

2010-09-21 Thread Janko
Thank you! I was looking for java code like this. http://www.japisoft.com/formula/ looks simple enough and will do the job I need! thanks, js On Sep 21, 2:40 am, lineman78 linema...@gmail.com wrote: There are plenty of Java implementations that do the same thing if you would prefer sticking

Re: Evaluating string: (A+sin(B)) where A=1, B=2

2010-09-21 Thread Janko
However,.. both are commercial... are there any non-commercial packages?? On Sep 21, 2:40 am, lineman78 linema...@gmail.com wrote: There are plenty of Java implementations that do the same thing if you would prefer sticking with Java.  Popular Java projects include

Removing the CellTable header

2010-09-21 Thread monkeyboy
I want to show a CellTable without a header. What is the easiest way to accomplish this? -- 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

Support HTML5 form fields and attributes

2010-09-21 Thread marius.andreiana
Hi, Would this be an easy fix for GWT 2.1? http://code.google.com/p/google-web-toolkit/issues/detail?id=5295 Please add support for HTML5 form fields and attributes (placeholder, autofocus, required) as GWT widgets. http://diveintohtml5.org/forms.html dev.w3.org/html5/spec/ Just generate HTML5

Problem with ClientBundle DataResource - cryptic url

2010-09-21 Thread TL
Hello! I have a pdf file that I want users to be able to download if they click on an hyperlink so I have tried to implement clientBundle following the example on the GWT website : http://code.google.com/webtoolkit/doc/latest/DevGuideClientBundle.html public interface MyResources extends

Re: Problem with ClientBundle DataResource - cryptic url

2010-09-21 Thread Gal Dolber
You are doing nothing wrong, DataResource encode your files as base64 in every browser but IE. If you want a direct link to the pdf just put it into your war directory. On Tue, Sep 21, 2010 at 5:34 AM, TL thomas.lacr...@jouy.inra.fr wrote: Hello! I have a pdf file that I want users to be able

[] or ArrayList

2010-09-21 Thread Stefan Bachert
Hi, What are the pros and cons for arrays using either a) [] b) ArrayList in GWT, especially in RPC? Stefan Bachert http://gwtworld.de -- 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: Removing the CellTable header

2010-09-21 Thread Gal Dolber
table.addColumn(Column column, String header); table.addColumn(Column column); - *use this one* On Tue, Sep 21, 2010 at 4:44 AM, monkeyboy dilbert.elbo...@gmail.com wrote: I want to show a CellTable without a header. What is the easiest way to accomplish this? -- You received this message

Re: [] or ArrayList

2010-09-21 Thread Thomas Broyer
On Sep 21, 1:08 pm, Stefan Bachert stefanbach...@yahoo.de wrote: Hi, What are the pros and cons for arrays using either a) [] b) ArrayList in GWT, especially in RPC? Arrays are (almost?) directly mapped to JavaScript arrays in prod mode, while ArrayList wraps a JavaScript array, so

Re: Problem with ClientBundle DataResource - cryptic url

2010-09-21 Thread TL
Thanks, the direct link technique worked out great. The DataResource works too but only in my production mode, not sure what's wrong with my development browser (blank page...) I like the direct link technique better though because with the DataResource technique I get some user unfriendly names

Re: GWT designer mVp

2010-09-21 Thread marius.andreiana
On Sep 19, 5:08 pm, Eric Clayberg clayb...@google.com wrote: 2. Work with UX UI designers folks to understand how do they build now mocks wireframes for their companies apps. How do they use Photoshop, Fireworks, Dreamweaver? What tools to they use for wireframes and mocks and how? How

Re: Evaluating string: (A+sin(B)) where A=1, B=2

2010-09-21 Thread Janko
I found the solution: http://sourceforge.net/projects/smplmathparse/files/ it is simple math parser and it is free. On Sep 21, 10:22 am, Janko janko.sla...@gmail.com wrote: However,.. both are commercial... are there any non-commercial packages?? On Sep 21, 2:40 am, lineman78

Re: Removing the CellTable header

2010-09-21 Thread monkeyboy
That is what I was looking for. Thank You very much Gal. On Sep 21, 2:58 pm, Gal Dolber gal.dol...@gmail.com wrote: table.addColumn(Column column, String header); table.addColumn(Column column); - *use this one* On Tue, Sep 21, 2010 at 4:44 AM, monkeyboy dilbert.elbo...@gmail.com wrote: I

GWT File Download

2010-09-21 Thread meetmrdeepak
Hi, I have to integrate file download into my GWT application. UseCase - User clicks on Export Button (gwt button), call will go to RPC servlet, RPC servlet will fetch data from database and convert the records in ListDTO and this List will be passed to export Service to get Byte[]. NOTE: I

GPE not refreshing xxxx.gwt.rpc in dev mode on linux / tomcat

2010-09-21 Thread Nicolas ANTONIAZZI
Hello, I have a problem since a while and I am not sure about the source of the problem. I will use the sample application to explain it here (I will call my project gwt_tmp): 1 - I create a default gwt sample project with GPE. 2 - I start a debug session with the default Jetty Dev Mode. A - I

com.google.appengine.tools.admin.AdminException: Unable to update app: Error posting to URL: https://appengine.google.com/api/appversion/create?app_id=Mini-Aplicaciones+Empresarialesversion=1 400 Ba

2010-09-21 Thread Jose Manuel
Hi, I am getting this error when I try to deploy a application to AppEngine. The application works just fine in hosted mode, within Eclipse. This is my second deploy Here's the complete log: com.google.appengine.tools.admin.AdminException: Unable to update app: Error posting to URL:

List at GWT-RPC

2010-09-21 Thread Stefan Wokusch
Hello everybody, my architecture uses the Entities with mappinginformations for the server and the client. Best practise at the Servermodel means using List, Set and other Interfaces in the Model. This causes the GWT-RPC to use many unneccesary Classes here. This causes some warnings and many

Problem with GWT Developer Plugin

2010-09-21 Thread LuKe
Hi, I'm trying to develop a simple application using STS 2.5.0 (based on Eclipse 3.6) x86_64 and the Google Eclipse plugin. I have a problem to show my application in the browser. I'm using Firefox 3.6.7 x86_64 (Fedora 13) and I have already installed the GWT Developer plugin but I got always

Chat with GWT

2010-09-21 Thread Victor Machado
Hello, im new in programming with GWT and im trying to make a Chat application. I have a class Receiver, responsible to get the messages from the server and show them in a TextArea. It's something like this: class ChatEntryPoint implements EntryPoint{ Receiver r; final TextArea ta;

How do i get the row index and column index in each cell on mouse over event

2010-09-21 Thread Ivan
Hi all, I've searched much document about how to get the row index and column index on mouse over event, but i'still have no idea about that. Can you give me some example code tell me how to do that ? I can get element like below step, but how do i to get row index and column index ?

GWT Deployment

2010-09-21 Thread Msanka
Hello Team, I am in need to deploy GWT pluig for IE but my environment is FW enabled and Auto deployment using the URL is blocked. Is there any setup files available to deploy it remotely or manually other than the below link. http://gwt.google.com/samples/MissingPlugin/MissingPlugin.html

antivirus blocking requestbuilder

2010-09-21 Thread sindroide
Hello everyone! I'm having trouble with antivirus , any that has enable internet monitor (http on port 80). Weird is that if I use firefox with firebug enable my RequestBuilder works fine.. then all browser can recive the response from server, till I restart machine and again request is not sent.

Re: com.google.appengine.tools.admin.AdminException: Unable to update app: Error posting to URL: https://appengine.google.com/api/appversion/create?app_id=Mini-Aplicaciones+Empresarialesversion=1 40

2010-09-21 Thread Ikai Lan (Google)
What's your application ID? That URL doesn't look like it's a valid ID. -- Ikai Lan Developer Programs Engineer, Google App Engine Blogger: http://googleappengine.blogspot.com Reddit: http://www.reddit.com/r/appengine Twitter: http://twitter.com/app_engine On Tue, Sep 21, 2010 at 7:46 AM, Jose

Re: how to install GWT-2.1M3 from zip to eclipse

2010-09-21 Thread AlexG
Hi Nauman, you have to configure Eclipse, that it knows, where the jars are, of the new 2.1M3 library. Just do it like this: In Eclipse go to Properties - Google - Web Toolkit Than on the right side, click the link configure SDK´s... In this menu you can add a new GWT version ... in the dialog

GWT encoding problem

2010-09-21 Thread Thomas Van Driessche
Hi, I have a problem that my values out of my properties files are not well displayed on the page in utf8. This is already done: ?xml version=1.0 encoding=UTF-8? meta http-equiv=content-type content=text/html; charset=UTF-8 And the files in eclipse are saved using UTF-8. I tried to watch the

GWT encoding problem

2010-09-21 Thread Thomas Van Driessche
Hi, I have a problem that my values out of my properties files are not well displayed on the page in utf8. This is already done: ?xml version=1.0 encoding=UTF-8? meta http-equiv=content-type content=text/html; charset=UTF-8 And the files in eclipse are saved using UTF-8. I tried to watch the

Re: GWT save and modify in database(mysql)

2010-09-21 Thread nacho
I see lot of code but what is your trouble / question? On 20 sep, 07:34, Buica Tatiana doggie...@yahoo.com wrote: So i had to do the following assignment in GWT: 1.Implement a selection/de-selection component as described below: The selected item in the first list goes into the second

Hyperlink like GMail

2010-09-21 Thread chinese
Hi everyone, can someone help me? I want to create hyperlinks like gmail in my application. I mean, I want the hyperlinks appear like inbox, buzz (etc..) hyperlinks in gmail. How I must change the style of hyperlinks? Thanks! -- You received this message because you are subscribed to the Google

Re: GWT File Download

2010-09-21 Thread Prakash
AFAIK, you can't invoke browser download dialog with response from ajax request. One way to invoke browser download dialog is setting URL of an iframe. You can do following to implement file download with GWT. 1) Write a download servlet which writes byte[] to servlet output stream. And map it to

Re: GWT encoding problem

2010-09-21 Thread Hilco Wijbenga
On 21 September 2010 07:26, Thomas Van Driessche thomas.van.driessch...@gmail.com wrote: Hi, I have a problem that my values out of my properties files are not well displayed on the page in utf8. http://download.oracle.com/javase/6/docs/api/java/util/Properties.html (note the text about

Re: Form validation libraries?

2010-09-21 Thread Jim
i think it will be in gwt 2.1 On Sep 19, 8:57 am, RichardY richardy@gmail.com wrote: I'm looking to develop an app that involves the validation of user- submitted forms, similar to Formstack or other online form builders. I was wondering if any of the widget libraries supported such a

RootLayoutPanel adds extra divs which makes it unusable. Why?

2010-09-21 Thread marius.andreiana
Hi, In an app I was using RootLayoutPanel as it seems to be the new gwt 2.0 way of using panels. It generates 3 extra divs, which, besides too much markup, they also introduce some problems with onclick events being passed to various elements. I've found similar complaints from others, e.g.

Re: RootLayoutPanel adds extra divs which makes it unusable. Why?

2010-09-21 Thread Thomas Broyer
On Sep 21, 5:33 pm, marius.andreiana marius.andrei...@gmail.com wrote: Hi, In an app I was using RootLayoutPanel as it seems to be the new gwt 2.0 way of using panels. It generates 3 extra divs, which, besides too much markup, they also introduce some problems with onclick events being

Re: How do i get the row index and column index in each cell on mouse over event

2010-09-21 Thread lineman78
Cell cell = view.getCellForEvent(event); int row = cell.getRowIndex(); int col = cell.getCellIndex(); OR private int getRowForEvent(MouseEvent? event) { Element td = getEventTargetCell(Event.as(event.getNativeEvent())); if (td == null) { return -1;

Re: ScrolPanel Question

2010-09-21 Thread skippy
Well, thanks for the respond. However, I was not all that clear. I have very picky users and here is the real scoop: I am using UIBinder and here is my ui.xml: g:FlowPanel styleName='{style.outer}' g:FlexTable ui:field='grandTotalHeader' / g:FlexTable ui:field='grandTotalData' /

Re: ScrolPanel Question

2010-09-21 Thread lineman78
http://rcswebsolutions.wordpress.com/2007/01/02/scrolling-html-table-with-fixed-header/ On Sep 21, 12:07 pm, skippy al.leh...@fisglobal.com wrote: Well, thanks for the respond.  However, I was not all that clear. I have very picky users and here is the real scoop: I am using UIBinder and

Show case example of the new Data Presentation Widget?

2010-09-21 Thread skippy
I would like to see a working example of the GWT 2.1 Data Presentation Widget. Is there a scrollbar that does not include the hearer? Does it/can it work liks the FlexTables today? I have asked several time on this topic, but nobody seems to know. Is this not ready for the enterprise? -- You

Re: Widget libraries that work with uiBinder/GWT 2.0

2010-09-21 Thread Nirmal
GWT Mosaic On Sep 19, 5:57 am, RichardY richardy@gmail.com wrote: Do any exist?  From what I know, SmartGWT and Ext-GWT are still incompatible with uiBinder.  It'd be good to know if any other libraries are. -- You received this message because you are subscribed to the Google Groups

Re: Show case example of the new Data Presentation Widget?

2010-09-21 Thread Travis Camechis
You can look at the expenses app. Right now it you have to look at the SVN repository in order to look at it. Its under trunk/samples. I believe it will eventually in up in the showcase examples. On Tue, Sep 21, 2010 at 2:58 PM, skippy al.leh...@fisglobal.com wrote: I would like to see a

Re: Eclipse crashes after installing GWT Plugin

2010-09-21 Thread Arthur Kalmenson
I've also had issues installing GPE with Eclipse 3.6, remove the .metadata folder in your workspace worked for me. -- Arthur Kalmenson On Wed, Sep 8, 2010 at 11:07 AM, Rajeev Dayal rda...@google.com wrote: Hi, It looks like the root cause of the problem is the following exception: Root

Re: Embedding external html file in Frame object with linked CSS file

2010-09-21 Thread Arthur Kalmenson
Are you trying to apply CSS to HTML that's within the Frame? If that's the case, you're answer is here: http://stackoverflow.com/questions/217776/how-to-apply-css-to-iframe -- Arthur Kalmenson On Wed, Sep 8, 2010 at 9:07 PM, amal amal.d.a...@gmail.com wrote: Hi, I want to be able to add

root path for server side code

2010-09-21 Thread andrewjmccann
Hi Folks, I have some server side code which runs some perl scripts on the server and passes their output to the client over the RPC service. I run the scripts by calling the Runtime.getRuntime().exec(myscript.pl); command. When I work with eclipse development mode, my scripts need to be in the

Re: Show case example of the new Data Presentation Widget?

2010-09-21 Thread Gal Dolber
I am almost sure there are some examples in the showcase on trunk On Tue, Sep 21, 2010 at 3:15 PM, Travis Camechis camec...@gmail.com wrote: You can look at the expenses app. Right now it you have to look at the SVN repository in order to look at it. Its under trunk/samples. I believe it

Re: Show case example of the new Data Presentation Widget?

2010-09-21 Thread Travis Camechis
yep the expenses app uses them along with the new MVP framework. On Tue, Sep 21, 2010 at 4:12 PM, Gal Dolber gal.dol...@gmail.com wrote: I am almost sure there are some examples in the showcase on trunk On Tue, Sep 21, 2010 at 3:15 PM, Travis Camechis camec...@gmail.comwrote: You can look

How to tell when a text box loses focus

2010-09-21 Thread Brett Thomas
Hey, basic question here that I can't find the answer to. Is there any way to do something to a TextBox when it loses focus in GWT 2.0? The FocusListener interface, which has an onLostFocus method, was deprecated in favor of FocusHandler, which does not. Can't find anything comparable. Use case:

Re: Show case example of the new Data Presentation Widget?

2010-09-21 Thread Paul Stockley
There are some samples of just the data presentation widgets without the MVP framework stuff in the showcase on trunk. This will be a lot easier to understand if you only care about the widgets. On Sep 21, 4:16 pm, Travis Camechis camec...@gmail.com wrote: yep the expenses app uses them along

Re: How to tell when a text box loses focus

2010-09-21 Thread Chad
Brett, You are looking for the BlurHandler / onBlur. HTH, Chad On Sep 21, 3:23 pm, Brett Thomas brettptho...@gmail.com wrote: Hey, basic question here that I can't find the answer to. Is there any way to do something to a TextBox when it loses focus in GWT 2.0? The FocusListener interface,

Why is getOffsetWidth/getOffsetHeight returning 0 even after onLoad is called for LayoutPanel children?

2010-09-21 Thread Damon Lundin
I am attempting to use the new GWT LayoutPanels and unfortunately they are causing me some grief. We are using the layout panels (RootLayoutPanel, DockLayoutPanel, LayoutPanel, etc) to arrange the overall layout of the panel. Then, the children of one of these panels needs to know how big it is

Re: Why is getOffsetWidth/getOffsetHeight returning 0 even after onLoad is called for LayoutPanel children?

2010-09-21 Thread Gal Dolber
try with onAttach() On Tue, Sep 21, 2010 at 5:13 PM, Damon Lundin damon.lun...@gmail.comwrote: I am attempting to use the new GWT LayoutPanels and unfortunately they are causing me some grief. We are using the layout panels (RootLayoutPanel, DockLayoutPanel, LayoutPanel, etc) to arrange the

Re: Hyperlink like GMail

2010-09-21 Thread Lúcio Camilo
You will have to set the hover of the element, like this for example: a:hover { background:#ffc; text-decoration: underline overline; color: #FF; } 2010/9/21 chinese daniela.ie...@gmail.com Hi everyone, can someone help me? I want to create hyperlinks like gmail in my

Re: Why is getOffsetWidth/getOffsetHeight returning 0 even after onLoad is called for LayoutPanel children?

2010-09-21 Thread Thomas Broyer
On 21 sep, 23:13, Damon Lundin damon.lun...@gmail.com wrote: I am attempting to use the new GWT LayoutPanels and unfortunately they are causing me some grief.  We are using the layout panels (RootLayoutPanel, DockLayoutPanel, LayoutPanel, etc) to arrange the overall layout of the panel.  

Re: Why is getOffsetWidth/getOffsetHeight returning 0 even after onLoad is called for LayoutPanel children?

2010-09-21 Thread Damon Lundin
On Sep 21, 5:21 pm, Gal Dolber gal.dol...@gmail.com wrote: try with onAttach() The method onLoad is called by onAttach so overiding onAttach won't change anything not to mention the fact that the doc for onAttach says It is strongly recommended that you override {...@link #onLoad()} or {...@link

Re: RootLayoutPanel adds extra divs which makes it unusable. Why?

2010-09-21 Thread macagain
Thomas- can you elaborate on what each's purpose is... I've been wondering about the diff... thanks! -r On Sep 21, 9:56 am, Thomas Broyer t.bro...@gmail.com wrote: On Sep 21, 5:33 pm, marius.andreiana marius.andrei...@gmail.com wrote: Hi, In an app I was using RootLayoutPanel as it

serializing classes in GWT w/o source code

2010-09-21 Thread doles
Hello! So, I have a GWT app that uses a domain object model from another project library within our company. This domain object model is distributed as a library file and no sources are normally available. The domain object model is serialized and all that is good so, my IDE does not complain

Re: Why is getOffsetWidth/getOffsetHeight returning 0 even after onLoad is called for LayoutPanel children?

2010-09-21 Thread Didier DURAND
Did you check if you have the issue on all browsers: I have it on Webkit based browsers (Safari + Chrome) but not on IE and FF. didier On Sep 22, 12:43 am, Damon Lundin damon.lun...@gmail.com wrote: On Sep 21, 5:21 pm, Gal Dolber gal.dol...@gmail.com wrote: try with onAttach() The method

Re: GWT Designer not available ...

2010-09-21 Thread jim9
textBox widget error: I'm run into problem with textBox in the new GWT StockWatcher tutorial using GWT 2.1.M3 on Ubuntu 10.4, Eclipse 3.6. textBox widget can't be added to Horizontal Panel or any panel. Other widgets (label, button...) and panels are working fine. Can you please verify the

command pattern, anon innerclass serialization exception

2010-09-21 Thread Mike Wyszinski
wondering why this results in a serialization exception(running it in debugger- com.google.gwt.dev.GWTShell) code snippets below I really like just needing to deal with the onSucceded() in my presenter code and leaving the onfailure,lookup invocation code in the action. This way i can

Re: command pattern, anon innerclass serialization exception

2010-09-21 Thread Mike Wyszinski
forgot one more interface for invoke the service public interface GwtActionService extends RemoteService { T extends Response T execute(ActionT action); } On Sep 21, 11:22 pm, Mike Wyszinski mike.wyszin...@gmail.com wrote: wondering why this results in a serialization exception(running it

[gwt-contrib] Re: Adds support for List collections. Request methods are now permitted to return (issue893801)

2010-09-21 Thread cromwellian
Bob noted a missing check for Set, which led me to realize that we had no Set equivalent of RecordListRequest/ProxyListRequest. The lastest patch adds it and fixes the nits. http://gwt-code-reviews.appspot.com/893801/diff/23001/24007 File

[gwt-contrib] Bug with CellList when used with MultiSelectionModel

2010-09-21 Thread monkeyboy
If the MultiSelectionModel is used as a selection model for a CellList items can only be selected but they can not be deselected. I found this in svn 8815. The way to reproduce the bug is to replace the following code in CwCellList from the showcase example: // Add a selection model so we can

[gwt-contrib] Re: RPC vs DeRPC in 2.1

2010-09-21 Thread Thomas Broyer
On Sep 21, 11:44 am, stuckagain david.no...@gmail.com wrote: GWT contributors, Will there be a production quality RPC mechanism available in GWT 2.1 as part of the RequestFactory stuff ? Or do we still have to suffer the stackoverflow inducing RPC implementation ? I'm currently fighting

Re: [gwt-contrib] RPC vs DeRPC in 2.1

2010-09-21 Thread Paul Robinson
stuckagain wrote: GWT contributors, Will there be a production quality RPC mechanism available in GWT 2.1 as part of the RequestFactory stuff ? Or do we still have to suffer the stackoverflow inducing RPC implementation ? I'm currently fighting to get RPC to work with a tree structure that

Re: [gwt-contrib] Bug with CellList when used with MultiSelectionModel

2010-09-21 Thread John LaBanca
We have a TODO in the code to fix this. When we add ctrl/shift+click support, we can fix the issue. Thanks, John LaBanca jlaba...@google.com On Tue, Sep 21, 2010 at 3:56 AM, monkeyboy dilbert.elbo...@gmail.comwrote: If the MultiSelectionModel is used as a selection model for a CellList

[gwt-contrib] Adds additional keyboard support in Cell Widgets. CellList and CellTable now support page down/u... (issue906801)

2010-09-21 Thread jlabanca
Reviewers: rice, Description: Adds additional keyboard support in Cell Widgets. CellList and CellTable now support page down/up, home, and end. CellBrowser and CellTree support left/right to navigate into/out of child nodes. All widgets support SPACE to select the current item in the

[gwt-contrib] Re: Bug with CellList when used with MultiSelectionModel

2010-09-21 Thread monkeyboy
Thanks John for the quick response. How can I monitor this issue, I mean how can I tell when it is solved cause I need this feature real soon. I assume it will surely be solved before 2.1 final release. On Sep 21, 3:39 pm, John LaBanca jlaba...@google.com wrote: We have a TODO in the code to fix

[gwt-contrib] Re: Public: First take at GWT validation that actually validates on the client side. (issue863801)

2010-09-21 Thread bobv
For the untranslatable validators, it seems more straightforward to have a super-source version of the annotation that's tagged as @NotGwtCompatible. Instead of having the sample app import the HibernateValidator package, would it make sense to have the gwt.Validation package include the

[gwt-contrib] Re: Public: First take at GWT validation that actually validates on the client side. (issue863801)

2010-09-21 Thread Nick Chalko
On Tue, Sep 21, 2010 at 7:04 AM, b...@google.com wrote: For the untranslatable validators, it seems more straightforward to have a super-source version of the annotation that's tagged as @NotGwtCompatible. Hmm, that might work. However it could be complicated because I am actually deciding

Re: [gwt-contrib] Re: Replaces the public and obnoxious String EntityProxy#getId() with the (issue902801)

2010-09-21 Thread Rodrigo Chandia
Let me know how that works as I am doing the same for ROO-1430 El 21 de septiembre de 2010 01:05, Amit Manjhi amitman...@google.comescribió: LGTM, with a TODO (amitmanjhi) to change SimpleFoo id to String and checking if everything works. On Mon, Sep 20, 2010 at 9:15 PM, Amit Manjhi

[gwt-contrib] Re: Adds support for List collections. Request methods are now permitted to return (issue893801)

2010-09-21 Thread bobv
http://gwt-code-reviews.appspot.com/893801/diff/30001/31001 File user/src/com/google/gwt/requestfactory/client/impl/AbstractJsonProxyCollectionRequest.java (right): http://gwt-code-reviews.appspot.com/893801/diff/30001/31001#newcode69

[gwt-contrib] This is a first-pass at adding SafeHtml support to a subset of the widgets. In cases where the c... (issue907801)

2010-09-21 Thread pdr
Reviewers: jat, Description: This is a first-pass at adding SafeHtml support to a subset of the widgets. In cases where the class implements HasHTML, HasSafeHtml has been implemented as well. In constructors that accept a string that can be parsed as Html, a SafeHtml constructor has been added.

[gwt-contrib] Re: Get strong permutation from headers rather than serialized log record (issue880802)

2010-09-21 Thread unnurg
http://gwt-code-reviews.appspot.com/880802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Get strong permutation from headers rather than serialized log record (issue880802)

2010-09-21 Thread unnurg
http://gwt-code-reviews.appspot.com/880802/diff/12001/13003 File samples/logexample/src/com/google/gwt/sample/logexample/client/LogExample.java (right): http://gwt-code-reviews.appspot.com/880802/diff/12001/13003#newcode55

[gwt-contrib] Re: Get strong permutation from headers rather than serialized log record (issue880802)

2010-09-21 Thread fredsa
LGTM http://gwt-code-reviews.appspot.com/880802/diff/22001/23010 File user/src/com/google/gwt/logging/server/RemoteLoggingServiceUtil.java (right): http://gwt-code-reviews.appspot.com/880802/diff/22001/23010#newcode34 user/src/com/google/gwt/logging/server/RemoteLoggingServiceUtil.java:34: *

[gwt-contrib] Re: Introducing DirectionalTextHelper, a new helper class for text and direction manipulations in wi... (issue901801)

2010-09-21 Thread jlabanca
LGTM with some nits http://gwt-code-reviews.appspot.com/901801/diff/1/3 File user/src/com/google/gwt/user/client/ui/DirectionalTextHelper.java (right): http://gwt-code-reviews.appspot.com/901801/diff/1/3#newcode29 user/src/com/google/gwt/user/client/ui/DirectionalTextHelper.java:29: public

[gwt-contrib] Add base64 encoding to JsonRequestProcessor and change the delimiter to the '!' character. (issue908801)

2010-09-21 Thread pdr
Reviewers: rjrjr, Description: Add base64 encoding to JsonRequestProcessor and change the delimiter to the '!' character. Please review this at http://gwt-code-reviews.appspot.com/908801/show Affected files: M user/src/com/google/gwt/requestfactory/client/impl/AbstractRequest.java M

[gwt-contrib] Re: Get strong permutation from headers rather than serialized log record (issue880802)

2010-09-21 Thread unnurg
http://gwt-code-reviews.appspot.com/880802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Add base64 encoding to JsonRequestProcessor and change the delimiter to the '!' character. (issue908801)

2010-09-21 Thread rice
http://gwt-code-reviews.appspot.com/908801/diff/1/5 File user/src/com/google/gwt/requestfactory/client/impl/ProxyJsoImpl.java (right): http://gwt-code-reviews.appspot.com/908801/diff/1/5#newcode192 user/src/com/google/gwt/requestfactory/client/impl/ProxyJsoImpl.java:192: String schemaAndId[] =

[gwt-contrib] Re: Get strong permutation from headers rather than serialized log record (issue880802)

2010-09-21 Thread fredsa
LGTM http://gwt-code-reviews.appspot.com/880802/diff/19/4027 File user/src/com/google/gwt/logging/server/RemoteLoggingServiceImpl.java (right): http://gwt-code-reviews.appspot.com/880802/diff/19/4027#newcode42 user/src/com/google/gwt/logging/server/RemoteLoggingServiceImpl.java:42: * Returns

[gwt-contrib] Re: Replaces the public and obnoxious String EntityProxy#getId() with the (issue902801)

2010-09-21 Thread rjrjr
http://gwt-code-reviews.appspot.com/902801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Adds additional keyboard support in Cell Widgets. CellList and CellTable now support page down/u... (issue906801)

2010-09-21 Thread rice
LGTM http://gwt-code-reviews.appspot.com/906801/diff/1/12 File samples/showcase/src/com/google/gwt/sample/showcase/client/content/cell/CwCellValidation.java (right): http://gwt-code-reviews.appspot.com/906801/diff/1/12#newcode104

[gwt-contrib] Re: Add base64 encoding to JsonRequestProcessor and change the delimiter to the '!' character. (issue908801)

2010-09-21 Thread rjrjr
LGTM http://gwt-code-reviews.appspot.com/908801/diff/1/5 File user/src/com/google/gwt/requestfactory/client/impl/ProxyJsoImpl.java (right): http://gwt-code-reviews.appspot.com/908801/diff/1/5#newcode192 user/src/com/google/gwt/requestfactory/client/impl/ProxyJsoImpl.java:192: String

[gwt-contrib] CellTable headersStale

2010-09-21 Thread Stephen Haberman
Hi, I'm using CellTable to render a table with a total footer. However, the footer is not redrawn when I change the rows in the table, so the total always says $0.00. Looking at the code, it looks like headersStale is only set true if I add/remove a column. IIRC, previously there was a

[gwt-contrib] [google-web-toolkit] r8827 committed - Move RequestFactory.URL field into DefaultRequestTransport....

2010-09-21 Thread codesite-noreply
Revision: 8827 Author: b...@google.com Date: Tue Sep 21 03:59:38 2010 Log: Move RequestFactory.URL field into DefaultRequestTransport. Patch by: bobv Review by: rjrjr Review at http://gwt-code-reviews.appspot.com/903801 http://code.google.com/p/google-web-toolkit/source/detail?r=8827 Modified:

[gwt-contrib] [google-web-toolkit] r8828 committed - Fix GWTShell. Compare classpaths by content instead of reference in Re...

2010-09-21 Thread codesite-noreply
Revision: 8828 Author: con...@google.com Date: Tue Sep 21 04:21:01 2010 Log: Fix GWTShell. Compare classpaths by content instead of reference in ResourceOracleImpl.refresh(). Note that this is still much faster than the old behavior of exploring each classpath individually. Review at

[gwt-contrib] [google-web-toolkit] r8829 committed - Gets the code splitter to be effective even in draft compile mode....

2010-09-21 Thread codesite-noreply
Revision: 8829 Author: sp...@google.com Date: Tue Sep 21 05:23:10 2010 Log: Gets the code splitter to be effective even in draft compile mode. Review at http://gwt-code-reviews.appspot.com/875801 Review by: sco...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=8829

[gwt-contrib] Re: Public: First take at GWT validation that actually validates on the client side. (issue863801)

2010-09-21 Thread nchalko
http://gwt-code-reviews.appspot.com/863801/diff/3002/15002 File eclipse/samples/Validation/.classpath (right): http://gwt-code-reviews.appspot.com/863801/diff/3002/15002#newcode5 eclipse/samples/Validation/.classpath:5: classpathentry kind=src path=gwt-gen/ On 2010/09/21 14:04:18, bobv wrote:

[gwt-contrib] Re: Public: First take at GWT validation that actually validates on the client side. (issue863801)

2010-09-21 Thread nchalko
http://gwt-code-reviews.appspot.com/863801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r8834 committed - Get strong permutation from headers rather than serialized log record...

2010-09-21 Thread codesite-noreply
Revision: 8834 Author: gwt.mirror...@gmail.com Date: Tue Sep 21 13:12:02 2010 Log: Get strong permutation from headers rather than serialized log record Review at http://gwt-code-reviews.appspot.com/880802 Review by: fre...@google.com

[gwt-contrib] [google-web-toolkit] r8835 committed - assertEquals(1, list.size()) works a lot more often than you would t...

2010-09-21 Thread codesite-noreply
Revision: 8835 Author: rj...@google.com Date: Tue Sep 21 13:40:35 2010 Log: assertEquals(1, list.size()) works a lot more often than you would think http://code.google.com/p/google-web-toolkit/source/detail?r=8835 Modified:

[gwt-contrib] Rename RequestObject-Request and pull the 'with' method into it (issue909801)

2010-09-21 Thread rice
Reviewers: rjrjr, cromwellian, Description: Rename RequestObject-Request and pull the 'with' method into it Please review this at http://gwt-code-reviews.appspot.com/909801/show Affected files: M samples/dynatablerf/src/com/google/gwt/sample/dynatablerf/client/PersonEditorWorkflow.java

[gwt-contrib] Re: Adds additional keyboard support in Cell Widgets. CellList and CellTable now support page down/u... (issue906801)

2010-09-21 Thread jlabanca
http://gwt-code-reviews.appspot.com/906801/diff/1/12 File samples/showcase/src/com/google/gwt/sample/showcase/client/content/cell/CwCellValidation.java (right): http://gwt-code-reviews.appspot.com/906801/diff/1/12#newcode104

[gwt-contrib] [google-web-toolkit] r8836 committed - Repeats the existing tests with String id and confirm that the tests p...

2010-09-21 Thread codesite-noreply
Revision: 8836 Author: amitman...@google.com Date: Tue Sep 21 17:22:41 2010 Log: Repeats the existing tests with String id and confirm that the tests pass. Patch by: amitmanjhi Review by: rjrjr (desk review) http://code.google.com/p/google-web-toolkit/source/detail?r=8836 Added: