Re: How t compile and run gwt app in eclipse and normally

2010-07-02 Thread GWT Groups
Hello Friend, I am providing a link http://www.ibm.com/developerworks/library/os-ad-gwt1/ please go through with this link, you will definitely get success. it does not matter that you are beginner...do you best.. best wishes

problem deploying with maven

2010-07-02 Thread shirin
I have a gwt project and in this project I used gxt as well I deployed the project with ant and it deployed and run properly. Now I want to use maven to deploy it I use GWT version 2.0.3 and in pom.xml I mentioned this version of GWT After runing command mvn clean install I get this prompts:

how to update database, when a row a deleted in the smartGwt ListGrid

2010-07-02 Thread GWT Groups
Hello Friends... Now i need your help.. I am working on SmartGwt Expendable Grid...I am using ListGrid Class to generate grid. i want to delete the row from the grid...and changes should reflect into my database..Please provide me some idea to do that... This is my code fragment...

Mix up of the JavaScript files in modules

2010-07-02 Thread Jochen Schnaidt
Hi everyone, I have a serious problem with my GWT project. I have two modules, each with client code, shared and server parts. One is called ‘administration’ and one ‘signup’. The module inherit each other because of some shared files (server classes of appengine) I call my JavaScript files via

Re: Problem with Eclipse, Google plugin and WTP

2010-07-02 Thread SimonM
Hi, That's what we did as a fix, but it's not the way it should work. Otherwise we have to copy libs each time we add some in our business project which is not the way to go imho. On 1 juil, 15:04, Sebastian Rothbucher sebastian.rothbuc...@clarities.de wrote: Hi, can you not copy all libs to

align the widgets in DocLayoutPanel

2010-07-02 Thread nasionalem
Hello, I'm new in GWT development and need some help. I use GWT 2.0 and in my project I have a DockLayoutPanel which inculudes north, south, east and west. I have added a widget in East edge. But Its on right side of the East edge. How can I align the widget to the right side in East edge? //

auto refresh client side when ever there are changes in the database (without timer)

2010-07-02 Thread Fendy Tjin
Is there a way to automatically refresh the client side when ever there are changes in the database without the timer on the client side. -- 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: auto refresh client side when ever there are changes in the database (without timer)

2010-07-02 Thread Subhrajyoti Moitra
try server push.. http://code.google.com/p/google-web-toolkit-incubator/wiki/ServerPushFAQ On Fri, Jul 2, 2010 at 2:55 PM, Fendy Tjin fendyt...@gmail.com wrote: Is there a way to automatically refresh the client side when ever there are changes in the database without the timer on the client

Re: JDBC org.gjt.mm.mysql.Driver : Classnotfound

2010-07-02 Thread Hotkey
Thanks for the replies. I've currently solved the problem by disabling Use Google App Engine. After that i got other exceptions which i managed to solve by removing certain jar files out of the Build Path manually (relating to Google App Engine). On 2 Jul., 02:59, mdwarne mike.wa...@gmail.com

GWTCanvas not working on IE6?

2010-07-02 Thread Kevin
Hi all, I thought GWTCanvas supports IE6, I am sure it did, but haven't tried it on IE6 for a few months and all of a sudden it's not working on IE6 anymore. Anyone who can make it work on IE6? Thanks. Kevin -- You received this message because you are subscribed to the Google Groups Google

getting the current row count from the button

2010-07-02 Thread nasionalem
Hello, I have a simple problem. I am using GWT 2.0 and I need help. I add a row with a button in FlexTable. The button should remove the row when click. But I didnt get current current row count.. private void addItem() { // Add a button to remove this Item from the table. final int

Re: BigDecimal - Can you add it to 2.1 version

2010-07-02 Thread Richard
The Harmony team is not involved, I'm just some random guy. From Richard. On Jul 2, 8:06 am, Carl Pritchett bogusggem...@gmail.com wrote: http://code.google.com/p/gwt-java-math/ We use this in our finance based application and it works well. It's based on the Apache Harmony BigDecimal class

User management in GWT

2010-07-02 Thread sbrombo
Hi everyone, *Really short version*: I'd like suggestions on possible libraries/ projects to provide/develop the user registration/login/sessions within a GWT site. Off-the-shelf solutions are ok, too. Now some more details about my project: I'm a novice GWT user currently in the preliminary

UiBinder and Event Handlers (General Performance Question)

2010-07-02 Thread Jim
I have a question about the use of the Uibinder with regard to the simple binding of event handlers. From the examples in the - Developer's Guide - Event Handlers - section, it’s written: “Using anonymous inner classes as in the above example can use excessive memory for a large number of

Running a .exe file from server side code

2010-07-02 Thread Rajesh
Hi, I am trying to call a .exe file using server side code.However I keep getting this error: error===access denied (java.io.FilePermission ALL FILES execute). I even tried to change the security permissions of the file by changing the java.policy file but it still gives the same error.I have

Trying to create and read xml using gwt on client side

2010-07-02 Thread dlynch
I am creating an object which contains instances of other objects. I need to write a toXml() function for each object so that I can build a full xml document to send to the server from the client. I noticed something called DocumentFragment and was wondering first of all of this is the correct

onSuccess() return value other than void?

2010-07-02 Thread day_trader
At present, an AsyncCallback contains a 'public void onSuccess()' method. This is posing significant problems for me at the moment. I have a method myMethod() being called which has a return value type of ArrayListString. MyMethod contains this AsynCallback which is used to query a database on

Re: onSuccess() return value other than void?

2010-07-02 Thread andreas
Welcome to the async world! ;-) I had the same problem. Since the code of an async callback is not executed in the order of the statements in your myMethod() you can not directly return the results from onSuccess() in myMethod(). And myMethod() is not able to wait for onSuccess(). You could for

Re: User management in GWT

2010-07-02 Thread Jim
Hi M. I'm also here checking out GWT and I believe I may have tested something that may help you. I think it was while I was running some of the examples in the GWT section of What's Coming in 2.1 using the MVP Framework. In this section there's a link to Spring Roo

Re: User management in GWT

2010-07-02 Thread Jim
Hi M. Yes ... I just checked to see if I could find that demo. Here is the one to use: vote.roo: The Voting sample script was built live on-stage during SpringOne Europe 2009, as detailed in the project history section. This is nice sample script because it's quite small and only has two

Re: User management in GWT

2010-07-02 Thread Nicolas ANTONIAZZI
What is the problem with Shiro ? I am using it for security management with my application and we did not have encountered any problem with its integration. It was only few lines of code : public void login(String username, String password) { Subject currentUser = SecurityUtils.getSubject();

Re: Role-based security and widget visualization

2010-07-02 Thread Ladislav Gazo
Hey Kai, there is a toolkit called AcrIS (http://acris.googlecode.com/) where one of it's part is denoted to security - acris-security module (http://code.google.com/p/acris/wiki/Security). It handles client and server security. On the client it is using annotations or manually specified

Re: Role-based security and widget visualization

2010-07-02 Thread Ladislav Gazo
Hey Kai, there is a toolkit called AcrIS (http://acris.googlecode.com/) where one of it's part is denoted to security - acris-security module (http://code.google.com/p/acris/wiki/Security). It handles client and server security. On the client it is using annotations or manually specified

Re: Running a .exe file from server side code

2010-07-02 Thread Sripathi Krishnan
Disable Google App Engine in eclipse, delete all GAE jar files from your classpath and then retry. GAE does not allow you to write or execute files. --Sri On 2 July 2010 07:58, Rajesh rajesh...@gmail.com wrote: Hi, I am trying to call a .exe file using server side code.However I keep getting

SuggestBox question - is it possible to react on sub sequences of the words?

2010-07-02 Thread crojay78
Hi, I am using the suggest box in my app. Now I'm searching for the possibility to change the filter. Is it possible to change the behaviour so that not only words which start with the input will be suggested also words where the input occurs anywhere in the name. If I have a list like this Jim

Re: Role-based security and widget visualization

2010-07-02 Thread Ladislav Gazo
Hey Kai, there is a toolkit called AcrIS (http://acris.googlecode.com/) where one of it's part is denoted to security - acris-security module (http://code.google.com/p/acris/wiki/Security). It handles client and server security. On the client it is using annotations or manually specified

Re: auto refresh client side when ever there are changes in the database (without timer)

2010-07-02 Thread Stefan Bachert
Hi, there are some ways. The buzz words are comet, server push, long poll. These techniques are requesting values from the server, but the server only fulfills the requests when datas are available. The effect is, the client will wait until the server has data. With HTML5 is WebSockets coming.

Eclipse plugin for Eclipse 3.5 and GWT 2.1.0.M1

2010-07-02 Thread kawanka
When I create a new GWT project using Eclipse 3.5 the GWT 2.1.0 M1 and the accompanying plugin, I see that my project's libraries has GWT SDK -2.1.0M1 in the project's build path. which is what you would expect... The thing is though... I see gwt-bikeshed.jar, gwt-user.jar and gwt-dev.jar... what

Re: Window.Location.getParameter() always null

2010-07-02 Thread Stefan Bachert
Hi Mike, you code and url looks absolutely correct. I do the similar within my project and it works. I am using FF, eclipse, linux. I do not face any problems. I do not have any idea what went wrong at your site Stefan Bachert http://gwtworld.de On Jul 2, 3:10 am, mdwarne

How to show a load screen during rpc call?

2010-07-02 Thread crojay78
Hi, I need to load a few things from my server after a user gives input. Can somebody give an example how I can show a load screen as long as the rpc is not finished? I structured the app in mvp style ... any example would help me Best regards Thanks -- You received this message because you

Re: align the widgets in DocLayoutPanel

2010-07-02 Thread Stefan Bachert
Hi, try DockLayoutPanel p = new DockLayoutPanel(Unit.EM); p.addNorth(new HTML(north), 5); p.addSouth(new HTML(south), 2); HTML east = new HTML(east); east.getElement().getStyle().setProperty(marginRight, auto); p.addEast(east, 20); p.addWest(new HTML(west), 2); Not tested yet Stefan Bachert

Re: make fileupload widget readonly

2010-07-02 Thread Stefan Bachert
Hi, I would try fileupload.getElement().setPropertyString(readonly, readonly); fileupload.getElement().setPropertyString(disabled, disabled); Stefan Bachert http://gwtworld.de On Jul 1, 9:54 am, abhi abhishek@gmail.com wrote: how to make fileupload  textbox readonly. -- You received

Re: How to show a load screen during rpc call?

2010-07-02 Thread andreas
You could show your load screen (for example a popup panel or even just a label) right after issuing the RPC and hide it in onSuccess() and onFailure(). On 2 Jul., 18:02, crojay78 croja...@googlemail.com wrote: Hi, I need to load a few things from my server after a user gives input. Can

Re: Document.get().getElementById(String) and $doc.getElementById(String) returning nulls

2010-07-02 Thread giacomo
Thank you for your reply. I did know that I had to add the element before calling those methods, but sure enough I had forgotten that the panel in line 4 hadn't been added yet, as it was part of a cascade of constructors. Your reply helped me point that one out. Thanks, G. On Jul 1, 10:55 am,

Re: Problem with Eclipse, Google plugin and WTP

2010-07-02 Thread Rajeev Dayal
Hey Simon, If you navigate to the smart-ui project properties - Google - Web Application, what is the WAR folder set to? Is the Launch and Deploy From this Directory box checked? In your case, it should not be. Rajeev On Wed, Jun 30, 2010 at 7:29 AM, SimonM simon.manqu...@gmail.com wrote:

Re: Woes of ClientBundle +IE

2010-07-02 Thread Sean
So it turns out it actually wasn't the image rendering in-correctly. I did more investigating and it turns out that IE was not passing the Click-event correctly. It only passes it to the top visible image when they're stacked on an Absolute Panel. With some re-engineering of the logic I was able

Re: auto refresh client side when ever there are changes in the database (without timer)

2010-07-02 Thread Fendy Tjin
Thank you for the reply. But server push does not seem practical when we can't flush the HTTP connection. Although they did explain how to overcome it, however I require the HTTP connection to stay alive for I will use it for a live graph presentation (similar to the stock graph in yahoo finance.)

Re: onSuccess() return value other than void?

2010-07-02 Thread Sean
Yeah, it takes a while to start thinking Asynchronously. But Andreas has the right of it. You no longer think of it as call myMethod() to return the ArrayListString; you have to think of it is: 1) What do I want my user to do to request the data. (Or my program, like on start up you want the

Re: GWTCanvas not working on IE6?

2010-07-02 Thread Flemming Boller
i use it on ie6. it works both in development and deploy mode. remember that in IE you must use quirks mode. in strict mode nothing works :-( /Flemmng On Fri, Jul 2, 2010 at 1:22 PM, Kevin kevin...@confettistudio.com wrote: Hi all, I thought GWTCanvas supports IE6, I am sure it did, but

Re: make fileupload widget readonly

2010-07-02 Thread Isaac Truett
On Jul 2, 2010 12:15 PM, Stefan Bachert stefanbach...@yahoo.de wrote: Hi, I would try fileupload.getElement().setPropertyString(readonly, readonly); fileupload.getElement().setPropertyString(disabled, disabled); Stefan Bachert http://gwtworld.de On Jul 1, 9:54 am, abhi abhishek@gmail.com

Re: how to update database, when a row a deleted in the smartGwt ListGrid

2010-07-02 Thread Sean
You have to connect to your server (via RPC for example) and submit a DELETE query where the row is equal to what was in the listGrid. On Jul 2, 3:03 am, GWT Groups new.ankitj...@gmail.com wrote: Hello Friends... Now i need your help.. I am working on SmartGwt Expendable Grid...I am using

Push Button remains in gwt-PushButton-up-Hovering

2010-07-02 Thread KAS
Push Button remains in gwt-PushButton-up-Hovering even after the cursor has come out of the pus button -- 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

CellTable shows only progress bar

2010-07-02 Thread jantekb
Hi! I'm struggling with a Celltable that I'd like to use in a ui binding env. My problem is that it shows only the loading progress bar, never the actual data that I loaded into it. Here is my entry point module: ListSomeGTO dummy = new ArrayListSomeGTO(); dummy.add(new SomeGTO());

Re: align the widgets in DocLayoutPanel

2010-07-02 Thread roliveira
Hi nasionalem, I haven't tried your code but it seems your problem is: p.addEast(sampleWidget,20); With this instruction, you are not adding a widget to the East, but adding a new East One way to do it is to add the East just after you have sampleWidget ready. This is possible because you can

GWT-RPC on glassfish and Servlet 3.0 specifications

2010-07-02 Thread zame...@gmail.com
Hello All, My gwt app running on Glassfish 3.01 appserver. When I debugging servlet code I see that it use com.sun.enterprise.web.rpc.connector.coyote.PwcCoyoteRequest for HttpServletRequest. It compatible with old Servlet 2.0, but I need new Servlet 3.0 compatible HttpServletRequest. this

Any bulk file upload in gwt?

2010-07-02 Thread flyingb...@gmail.com
Is there any. like a lib that will use the flash mass uploading? -- 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

Google Plugin for Eclipse 1.4 M2

2010-07-02 Thread Jason Parekh
Excited about Google Web Toolkit 2.1 M2http://googlewebtoolkit.blogspot.com/2010/07/gwt-21-milestone-2-is-now-available.html? There's also a new Google Plugin for Eclipse 1.4 M2 to go along with it. Check out the new Speed Tracerhttp://code.google.com/webtoolkit/speedtracer/integration -- a

Re: SuggestBox question - is it possible to react on sub sequences of the words?

2010-07-02 Thread Isaac Truett
Sure. Just write your own SuggestOracle implementation. On Fri, Jul 2, 2010 at 11:21 AM, crojay78 croja...@googlemail.com wrote: Hi, I am using the suggest box in my app. Now I'm searching for the possibility to change the filter. Is it possible to change the behaviour so that not only

Re: Google Plugin for Eclipse 1.4 M2

2010-07-02 Thread Jaroslav Záruba
Sounds great. :) Will (is?) it be possible to use Speed Tracer with stable channel Chrome? Last time I checked (week ago) development channel Chrome was required; unfortunately it does not seem to support profiles. (Ctrl+M did not work with --enable-udd-profiles.) Also does the

Re: UiBinder and Event Handlers (General Performance Question)

2010-07-02 Thread Thomas Broyer
On 1 juil, 21:05, Jim rightscr...@gmail.com wrote: I have a question about the use of the Uibinder with regard to the simple binding of event handlers. From the examples in the - Developer's Guide - Event Handlers - section, it’s written: “Using anonymous inner classes as in the above

Re: Eclipse plugin for Eclipse 3.5 and GWT 2.1.0.M1

2010-07-02 Thread Thomas Broyer
On 2 juil, 17:51, kawanka kawa...@nbnet.nb.ca wrote: When I create a new GWT project using Eclipse 3.5 the GWT 2.1.0 M1 and the accompanying plugin, I see that my project's libraries has GWT SDK -2.1.0M1 in the project's build path. which is what you would expect... The thing is though... I

Re: How to show a load screen during rpc call?

2010-07-02 Thread Thomas Broyer
On 2 juil, 18:22, andreas horst.andrea...@googlemail.com wrote: You could show your load screen (for example a popup panel or even just a label) right after issuing the RPC and hide it in onSuccess() and onFailure(). And if you want the same panel to be shown in most cases, you could bake it

Application some times doesn't load in some browsers

2010-07-02 Thread Vinicius Rabelo
Hi All, I have one application with GWT 2.0.3 + GXT 2.1.1 + gwt-maven-plugin 1.2. Sometimes this application run OK, but sometimes when I am runing my Application in development mode it doesn't load in some browsers... some times doesn't load in IE, sometimes doesn't load in FF but always load in

Re: xs linker does not support all GWT features?

2010-07-02 Thread Brendan Kenny
Not sure if you meant to write just to me or reply to the list, but I'll forward this on to everyone. Shortly after I wrote that post it was discussed on the Contributors list that there was indeed a fundamental issue preventing the xs linker from working with code splitting, but that a patch was

Re: getting the current row count from the button

2010-07-02 Thread Rashmi
Below is the code for ClickHandler I have written for removing a row. The button is placed in each row in the FlexTable and removes that particular row. public class RemoveRowButtonClickHandler implements ClickHandler { @Override public void

[gwt-contrib] Re: Add WebSocket API (issue646803)

2010-07-02 Thread Thomas Broyer
On Fri, Jul 2, 2010 at 2:37 AM, j...@google.com wrote: http://gwt-code-reviews.appspot.com/646803/show All in all, it really feels over-engineered to me. Sorry to be harsh, but let me explain: What's the purpose of RawWebSocketImpl vs. WebSocket? that you could do a new WebSocket() instead of

[gwt-contrib] Re: Add WebSocket API (issue646803)

2010-07-02 Thread markovuksanovic
Here's what I think... What's the purpose of RawWebSocketImpl vs. WebSocket? that you could do a new WebSocket() instead of WebSocket.newInstance() ? (I don't dispute the interface+implementation, which is more-than-useful for mockability). Different browsers might have a slightly different

[gwt-contrib] Re: Inserting TreeItems into the logical list in the same spot that they are inserted into the physi... (issue645802)

2010-07-02 Thread jlabanca
@rice - Do you mind taking another look at the updated Patch Set? http://gwt-code-reviews.appspot.com/645802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] UiBinder tweaks for GWT Designer

2010-07-02 Thread Ray Ryan
On Thu, Jul 1, 2010 at 3:55 PM, Konstantin Scheglov konstantin.scheg...@gmail.com wrote: What does WBP stand for? WBP is acronym for WindowBuilder Prohttp://www.instantiations.com/windowbuilder/ - set of plugins for Eclipse for WYSIWYG development of GUI for Swing, SWT, RCP, XWT and

[gwt-contrib] Re: Add support for creating Grid elements using UiBinder. (issue154810)

2010-07-02 Thread rjrjr
Remember this? It's really close, I think just one more change is needed (below). http://gwt-code-reviews.appspot.com/154810/diff/22003/54004 File user/test/com/google/gwt/uibinder/elementparsers/GridParserTest.java (right):

[gwt-contrib] Re: Add support for creating Grid elements using UiBinder. (issue154810)

2010-07-02 Thread markovuksanovic
Yeah, I do remember. I will make the change later today. On 2010/07/02 14:40:57, Ray Ryan wrote: Remember this? It's really close, I think just one more change is needed (below). http://gwt-code-reviews.appspot.com/154810/diff/22003/54004 File

[gwt-contrib] Re: Fix issue 4781: allow HTML= in UiBinder for setHTML() (issue642801)

2010-07-02 Thread rjrjr
Thanks for the patch, Thomas. Yeah, I hate to say this but could you make the fix backward compatible? http://gwt-code-reviews.appspot.com/642801/diff/1/3 File user/test/com/google/gwt/uibinder/rebind/model/OwnerFieldClassTest.java (right):

[gwt-contrib] [google-web-toolkit] r8347 committed - Adds parser for TextAlignConstant, which accepts both friendly names...

2010-07-02 Thread codesite-noreply
Revision: 8347 Author: rj...@google.com Date: Fri Jul 2 04:56:18 2010 Log: Adds parser for TextAlignConstant, which accepts both friendly names and the UGLY_ONES used in code. Horiz and Vert constant parsers retrofitted with the same friendliness. Patch by konstantin.scheg...@gmail.com Review

[gwt-contrib] Adds EventTarget, add/removeEventListener() et al to gwt dom. (issue623803)

2010-07-02 Thread jgw
Reviewers: tbroyer, Description: Adds EventTarget, add/removeEventListener() et al to gwt dom. Note: This is not remotely finished, nor is the API certain. Please review this at http://gwt-code-reviews.appspot.com/623803/show Affected files: M user/src/com/google/gwt/dom/client/DOMImpl.java

[gwt-contrib] Adds Event.sinkEvent() to make it possible to sink custom events in gwt-user. Reimplements (issue635802)

2010-07-02 Thread jgw
Reviewers: tbroyer, Description: Adds Event.sinkEvent() to make it possible to sink custom events in gwt-user. Reimplements gwt-user event handling in terms of standard dom EventTarget methods. Note: This is not remotely finished, nor the API certain. Please review this at

[gwt-contrib] Adding microbenchmark for event sinking (using gwt-user Event.sinkEvents()). (issue668802)

2010-07-02 Thread jgw
Reviewers: tbroyer, Description: Adding microbenchmark for event sinking (using gwt-user Event.sinkEvents()). Please review this at http://gwt-code-reviews.appspot.com/668802/show Affected files: M

[gwt-contrib] Re: Fix issue 4781: allow HTML= in UiBinder for setHTML() (issue642801)

2010-07-02 Thread t . broyer
http://gwt-code-reviews.appspot.com/642801/diff/1/3 File user/test/com/google/gwt/uibinder/rebind/model/OwnerFieldClassTest.java (right): http://gwt-code-reviews.appspot.com/642801/diff/1/3#newcode62 user/test/com/google/gwt/uibinder/rebind/model/OwnerFieldClassTest.java:62:

[gwt-contrib] Re: Adds EventTarget, add/removeEventListener() et al to gwt dom. (issue623803)

2010-07-02 Thread jat
http://gwt-code-reviews.appspot.com/623803/diff/1/3 File user/src/com/google/gwt/dom/client/DOMImplStandard.java (right): http://gwt-code-reviews.appspot.com/623803/diff/1/3#newcode115 user/src/com/google/gwt/dom/client/DOMImplStandard.java:115: public native void addEventListener(EventTarget

[gwt-contrib] [google-web-toolkit] r8348 committed - Inserting TreeItems into the logical list in the same spot that they a...

2010-07-02 Thread codesite-noreply
Revision: 8348 Author: jlaba...@google.com Date: Fri Jul 2 05:43:30 2010 Log: Inserting TreeItems into the logical list in the same spot that they are inserted into the physical DOM. This fixes a bug where keyboard navigation occurs out of order, and generally makes the logical and

[gwt-contrib] Re: Inserting TreeItems into the logical list in the same spot that they are inserted into the physi... (issue645802)

2010-07-02 Thread jlabanca
committed as r8348 http://gwt-code-reviews.appspot.com/645802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Adds Event.sinkEvent() to make it possible to sink custom events in gwt-user. Reimplements (issue635802)

2010-07-02 Thread jgw
http://gwt-code-reviews.appspot.com/635802/diff/1/3 File user/src/com/google/gwt/user/client/Event.java (right): http://gwt-code-reviews.appspot.com/635802/diff/1/3#newcode556 user/src/com/google/gwt/user/client/Event.java:556: DOM.sinkEvent((com.google.gwt.user.client.Element) elem, type,

[gwt-contrib] Re: Adds EventTarget, add/removeEventListener() et al to gwt dom. (issue623803)

2010-07-02 Thread jgw
http://gwt-code-reviews.appspot.com/623803/diff/1/3 File user/src/com/google/gwt/dom/client/DOMImplStandard.java (right): http://gwt-code-reviews.appspot.com/623803/diff/1/3#newcode115 user/src/com/google/gwt/dom/client/DOMImplStandard.java:115: public native void addEventListener(EventTarget

[gwt-contrib] Re: Adds EventTarget, add/removeEventListener() et al to gwt dom. (issue623803)

2010-07-02 Thread jat
http://gwt-code-reviews.appspot.com/623803/diff/1/3 File user/src/com/google/gwt/dom/client/DOMImplStandard.java (right): http://gwt-code-reviews.appspot.com/623803/diff/1/3#newcode115 user/src/com/google/gwt/dom/client/DOMImplStandard.java:115: public native void addEventListener(EventTarget

[gwt-contrib] Re: Add WebSocket API (issue646803)

2010-07-02 Thread jgw
I don't have a particularly strong opinion on the RawWebSocket vs. RawWebSocketImpl dichotomy, but it might be a bit more abstracted that necessary. I'm perfectly fine with the WebSocket vs. RawWebSocket difference, though, because one's a native browser class, while the other provides a more

[gwt-contrib] Re: Add support for creating Grid elements using UiBinder. (issue154810)

2010-07-02 Thread markovuksanovic
Ok, I had a look and just remembered why I used more calls to resize methods. The GridParser walks through the Grid and on the fly calculates the size. So if it comes to an element that doesn't fit into the current grid element it expands it (either by number of columns, or rows - depends which

[gwt-contrib] Re: Adds EventTarget, add/removeEventListener() et al to gwt dom. (issue623803)

2010-07-02 Thread jgw
http://gwt-code-reviews.appspot.com/623803/diff/1/3 File user/src/com/google/gwt/dom/client/DOMImplStandard.java (right): http://gwt-code-reviews.appspot.com/623803/diff/1/3#newcode115 user/src/com/google/gwt/dom/client/DOMImplStandard.java:115: public native void addEventListener(EventTarget

[gwt-contrib] Re: Adds EventTarget, add/removeEventListener() et al to gwt dom. (issue623803)

2010-07-02 Thread t . broyer
LGTM overall. As a side note, where is the c.g.g.dom.client.EventListener defined? Could it be made generic? I like how the WebSocket proposal added a base Event class mimicking the DOM Event interface, with NativeEvent (and other WebSocket-specific events) extending it. EventListener could

[gwt-contrib] Re: Adds EventTarget, add/removeEventListener() et al to gwt dom. (issue623803)

2010-07-02 Thread jat
http://gwt-code-reviews.appspot.com/623803/diff/1/3 File user/src/com/google/gwt/dom/client/DOMImplStandard.java (right): http://gwt-code-reviews.appspot.com/623803/diff/1/3#newcode119 user/src/com/google/gwt/dom/client/DOMImplStandard.java:119:

[gwt-contrib] Re: Add support for creating Grid elements using UiBinder. (issue154810)

2010-07-02 Thread Ray Ryan
You're trading off compile time simplicity at the expense of runtime efficiency, and it's a bad trade. Rather than emitting java lines as you walk the XML, you can build a model of what you want to write. Once you're done with your traversal, you can write out a single call to resize(int, int),

[gwt-contrib] Re: Adds EventTarget, add/removeEventListener() et al to gwt dom. (issue623803)

2010-07-02 Thread jgw
http://gwt-code-reviews.appspot.com/623803/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Adds EventTarget, add/removeEventListener() et al to gwt dom. (issue623803)

2010-07-02 Thread jgw
http://gwt-code-reviews.appspot.com/623803/diff/1/4 File user/src/com/google/gwt/dom/client/DOMImplTrident.java (right): http://gwt-code-reviews.appspot.com/623803/diff/1/4#newcode161 user/src/com/google/gwt/dom/client/DOMImplTrident.java:161: // TODO: Hang on to enough information to implement

[gwt-contrib] Re: Adds EventTarget, add/removeEventListener() et al to gwt dom. (issue623803)

2010-07-02 Thread jgw
On 2010/07/02 16:26:08, tbroyer wrote: LGTM overall. As a side note, where is the c.g.g.dom.client.EventListener defined? Could it be made generic? I like how the WebSocket proposal added a base Event class mimicking the DOM Event interface, with NativeEvent (and other WebSocket-specific

[gwt-contrib] [google-web-toolkit] r8349 committed - Create top-level directory for GWT 2.1 M2/GPE 1.4 M2.

2010-07-02 Thread codesite-noreply
Revision: 8349 Author: jasonpar...@google.com Date: Fri Jul 2 09:53:04 2010 Log: Create top-level directory for GWT 2.1 M2/GPE 1.4 M2. http://code.google.com/p/google-web-toolkit/source/detail?r=8349 Added: /2.1.0.M2 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r8350 committed - Populate gwt-maven-plugin and GAE 1.3.5 into Maven repo.

2010-07-02 Thread codesite-noreply
Revision: 8350 Author: jasonpar...@google.com Date: Fri Jul 2 10:26:43 2010 Log: Populate gwt-maven-plugin and GAE 1.3.5 into Maven repo. http://code.google.com/p/google-web-toolkit/source/detail?r=8350 Added: /2.1.0.M2/gwt /2.1.0.M2/gwt/maven /2.1.0.M2/gwt/maven/com

[gwt-contrib] [google-web-toolkit] r8351 committed - Populate GWT 2.1 M2 into Maven repo.

2010-07-02 Thread codesite-noreply
Revision: 8351 Author: jasonpar...@google.com Date: Fri Jul 2 10:29:54 2010 Log: Populate GWT 2.1 M2 into Maven repo. http://code.google.com/p/google-web-toolkit/source/detail?r=8351 Added: /2.1.0.M2/gwt/maven/com/google/gwt /2.1.0.M2/gwt/maven/com/google/gwt/gwt-dev

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

2010-07-02 Thread jgw
LGTM overall. Some minor comments that shouldn't stop you from committing. And let me just add w00t, tests! http://gwt-code-reviews.appspot.com/614803/diff/3001/4013 File user/src/com/google/gwt/user/cellview/client/CellTable.java (right):

[gwt-contrib] [google-web-toolkit] r8352 committed - Populate GPE 1.4 M2 for Eclipse 3.5 into Maven repo.

2010-07-02 Thread codesite-noreply
Revision: 8352 Author: jasonpar...@google.com Date: Fri Jul 2 10:51:10 2010 Log: Populate GPE 1.4 M2 for Eclipse 3.5 into Maven repo. http://code.google.com/p/google-web-toolkit/source/detail?r=8352 Added: /2.1.0.M2/eclipse /2.1.0.M2/eclipse/plugin /2.1.0.M2/eclipse/plugin/3.5

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

2010-07-02 Thread jgw
On 2010/06/28 17:44:06, jlabanca wrote: LGTM. http://gwt-code-reviews.appspot.com/667801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r8353 committed - Added the artifacts for Eclipse 3.6...

2010-07-02 Thread codesite-noreply
Revision: 8353 Author: amitman...@google.com Date: Fri Jul 2 11:12:19 2010 Log: Added the artifacts for Eclipse 3.6 Patch by: jasonparekh Commit by: amitmanjhi http://code.google.com/p/google-web-toolkit/source/detail?r=8353 Added: /2.1.0.M2/eclipse/plugin/3.6

[gwt-contrib] [google-web-toolkit] r8354 committed - Added the artifacts for Eclipse 3.4...

2010-07-02 Thread codesite-noreply
Revision: 8354 Author: amitman...@google.com Date: Fri Jul 2 11:15:16 2010 Log: Added the artifacts for Eclipse 3.4 Patch by: jasonparekh Commit by: amitmanjhi http://code.google.com/p/google-web-toolkit/source/detail?r=8354 Added: /2.1.0.M2/eclipse/plugin/3.4

[gwt-contrib] [google-web-toolkit] r8356 committed - UiBinderWriter#escapeTextForJavaStringLiteral correctly escapes \n and...

2010-07-02 Thread codesite-noreply
Revision: 8356 Author: rj...@google.com Date: Fri Jul 2 08:22:57 2010 Log: UiBinderWriter#escapeTextForJavaStringLiteral correctly escapes \n and , but forgets \. Also, I couldn't see a reason for using replaceAll instead of replace. Patch by tbro...@gmail.com Review by rj...@google.com

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

2010-07-02 Thread jlabanca
committed as r8357 http://gwt-code-reviews.appspot.com/614803/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] UiBinder tweaks for GWT Designer

2010-07-02 Thread Konstantin Scheglov
On Fri, Jul 2, 2010 at 6:20 PM, Ray Ryan rj...@google.com wrote: This is absolutely not related to databinding, we just want to produce GUI builder for UiBinder. I think that tooling was specified as one of the reasons to use XML for GWT UI. So, this is on what I work now. :-) Well

[gwt-contrib] Revert the ListBoxCell changes that slipped into MailRecipe from another change that hasn't been... (issue650802)

2010-07-02 Thread jlabanca
Reviewers: Dan Rice, Description: Revert the ListBoxCell changes that slipped into MailRecipe from another change that hasn't been submitted yet. Please review this at http://gwt-code-reviews.appspot.com/650802/show Affected files: M

[gwt-contrib] Custom UiBinder attribute parsers

2010-07-02 Thread Daniel Bell
Hello, I've been investigating UiBinder with a view to creating a custom attribute parser. I was hoping to be able to add my own attributes to existing Widgets' elements in a similar way to the ui:field attribute. From the discussions I've seen, it seems that the only way to do it at the moment

Re: [gwt-contrib] Re: Add WebSocket API (issue646803)

2010-07-02 Thread gustav trede
On 2 July 2010 15:37, markovuksano...@gmail.com wrote: Here's what I think... What's the purpose of RawWebSocketImpl vs. WebSocket? that you could do a new WebSocket() instead of WebSocket.newInstance() ? (I don't dispute the interface+implementation, which is more-than-useful for

[gwt-contrib] History token encoding issues

2010-07-02 Thread Andy
I considered logging an issue about this, but I think I'm advocating a different, incompatible history encoding strategy (don't encode/ decode) and it will likely cause issues for some people if the change were made. As I understand the history of history encoding, originally it was encoded using

[gwt-contrib] [google-web-toolkit] r8358 committed - Revert the ListBoxCell changes that slipped into MailRecipe from anoth...

2010-07-02 Thread codesite-noreply
Revision: 8358 Author: jlaba...@google.com Date: Fri Jul 2 10:03:45 2010 Log: Revert the ListBoxCell changes that slipped into MailRecipe from another change that hasn't been submitted yet. Review at http://gwt-code-reviews.appspot.com/650802

[gwt-contrib] Re: Revert the ListBoxCell changes that slipped into MailRecipe from another change that hasn't been... (issue650802)

2010-07-02 Thread jlabanca
comitted as r8358 http://gwt-code-reviews.appspot.com/650802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fix for issue 516 (issue612802)

2010-07-02 Thread markovuksanovic
Here's the reverted patch set. http://gwt-code-reviews.appspot.com/612802/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

  1   2   >