Re: Get all events

2010-11-23 Thread MAM
thanks for the reply , i'm not trying to listen to native dom events . i give you an example to understand: - i have a button add with an addClickHandler - At runtime i'm trying to get all button's properties and events (in this case the addClickHandler) Thanks On 19 nov, 12:25, Jack

Re: Documentation 'Getting started with RequestFactory' is missing the 'inherits' point

2010-11-23 Thread Thomas Broyer
On 23 nov, 07:21, Berzehk berz...@gmail.com wrote: It should mention the gwt.app.xml file should contain :   inherits name='com.google.gwt.requestfactory.RequestFactory' / to work correctly. There is no mention of it in the document.. It's only appearing in the dynatablerf example. *and* the

Re: Documentation 'Getting started with RequestFactory' is missing the 'inherits' point

2010-11-23 Thread Eric
What about servlet mappings in web.xml ? I'm looking at the expenses example and the web.xml contains entries for few servlets. Do we have to add the servlet mappings as well ? On Nov 23, 8F:21 am, Berzehk berz...@gmail.com wrote: It should mention the gwt.app.xml file should contain :  

Re: Web Security General questions

2010-11-23 Thread Jeff Larsen
Thanks for the book suggestion! That book looks like a good read. I'll get the boss's ok and get a copy for the office. Anyone else have any good web security resources? On Nov 21, 10:26 pm, Didier Durand durand.did...@gmail.com wrote: Hi, I would recommend the book Ajax Security by Billy

Deploying GWT application on a web server

2010-11-23 Thread Noor
Hi, I have read the documentation on deployment but I have not yet figured how to deploy an gwt app on web server. Can someone explain me how to do so assume the default application created with eclipse: that is the server implementation in a package and the field verifier which is used by the

Re: How to stop IE8 from caching my Ajax requests ?

2010-11-23 Thread magat
Problem solved. Just added a new param to my request : params + = time= + (new Date()).getTime(); Thanks again for your help On 22 nov, 10:41, magat mathieu.a...@gmail.com wrote: Thanks for your answer ! I understand your point, but I'm not in charge of the server, which is part of my

Re: Deploying GWT application on a web server

2010-11-23 Thread Carlos Morell
Hi, I think that you have to deploy a war file with all your web app. Read this blog, maybe it answer your better than me hehehe http://blog.elitecoderz.net/gwt-and-tomcat-create-war-using-eclipse-to-deploy-war-on-tomcat/2009/12/ :) 2010/11/23 Noor baken...@gmail.com Hi, I have read the

inheritance in Services that are used by RequestFactory RequestContext classes

2010-11-23 Thread agi
Hallo, I am using RequestFactory in my project. What I would like to do is to have base class for some of my g...@service classes which will be holding some common functionality ( e.g. CRUD operations) First try to achieve that was creating structure like this: // request definition on client

Integrating GWT Test cases in to Ant build

2010-11-23 Thread Sreekanth Nambiar
Hi, Do anybody have sample code to demonstrate how GWT test cases can be integrated in to Ant build script? Thanks Sreekanth -- 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: can I use java.util.UUID on client-side?

2010-11-23 Thread Slava Lovkiy
Current solution i have is to generate a batch of guids on the server, send it to the client once, at the initialisation of the app. Client will use the guids from the batch, gradually exhausting the pool. The refill of the pool is done when it is about to run out of available guids using asynch

GWT 2.1 DateTimeFormat locale changes?

2010-11-23 Thread Rick Porter
Hello, I recently made some tool updates to Helios GWT 2.1, and everything looks pretty good. However, I am seeing some changed behavior regarding the date/time formatting and locales. Previously, my out- of-the-box compile gave me en-US formatting (12 hr times, week starting on Sun, and

Re: can I use java.util.UUID on client-side?

2010-11-23 Thread Peter Ondruska
Why not firing request for new GUID group right after you receive asynch reply. Thereby you would always have fresh group of GUIDs available (given you request big enough group). On 23 lis, 13:26, Slava Lovkiy slava.lov...@gmail.com wrote: Current solution i have is to generate a batch of guids

Re: can I use java.util.UUID on client-side?

2010-11-23 Thread Peter Ondruska
I can change the http://uuid-service.appspot.com to allow requesting group of UUID for a single request. On 23 lis, 13:26, Slava Lovkiy slava.lov...@gmail.com wrote: Current solution i have is to generate a batch of guids on the server, send it to the client once, at the initialisation of the

gwt using jquery effect possible?

2010-11-23 Thread asianCoolz
@UiHandler(buttonfire) void addNewWidget(ClickEvent event) { htmlPanelHolder.add(new MyCustomWidget(),placeholder); } how to use jquery so that when the MyCustomWidget() show on screen it is using jquery fadein effect -- You received this message because you are subscribed to the

Re: gwt using jquery effect possible?

2010-11-23 Thread ciosbel
There is a clone of JQuery for gwt http://code.google.com/p/gwtquery/ Check it out, could be really helpful. On 23 Nov, 13:59, asianCoolz second.co...@gmail.com wrote: �...@uihandler(buttonfire)   void addNewWidget(ClickEvent event) {      htmlPanelHolder.add(new

Re: Web Browser's history not saving last urls

2010-11-23 Thread Thomas Broyer
On 23 nov, 14:11, Pablo G.F blay...@gmail.com wrote: Hello: I have a GWT application where I call some redirects (Window.Location.replace(url)). That URL is captured by a servlet and it passes the control to a Controlles (via Spring). That redirects are made when some widgets of my app are

stylesheets from included Eclipse projects not loaded

2010-11-23 Thread John
I've got a multi-project app setup in Eclipse, with the dependent projects being included on the build path of the main project. Each contributing project has its own stylesheet included in the module *.gwt.xml file ala stylesheet src=monitoring.css/ (each stylesheet is in the public path

Re: GWT Designer crashes - GWT Designer 8.1 Beta + STS 2.5.1

2010-11-23 Thread Eric Clayberg
We have confirmed that this is a problem specific to XP, so we are going to disable that functionality, if we detect that we are running in XP. On Nov 22, 10:19 am, Eric Clayberg clayb...@google.com wrote: The release version does not try to use WebKit at all and just uses IE for its rendering

Re: Deploying GWT application on a web server

2010-11-23 Thread Lukasz
Just compile the project using the eclipse Google - Compile option. Then make a WAR archive (archive the war folder within your project folder) and deploy it e.g. on tomcat (copy the archive to tomcat's webapps directory). After tomcat discovered the new war and auto-deployed it, you're ready to

How to animate using ActivityManager

2010-11-23 Thread Raphael André Bauer
Hi, I am currently checking out possibilites to use animations together with ActivityManagers of GWT 2.1. (using something like -webkit-transition-property: -webkit-transform; -webkit-transition-duration: 0.35s; etc). When the user navigates from one place to another I simply want to fade

Re: Deploying GWT application on a web server

2010-11-23 Thread Noor
what about the server implementation files?? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group, send email to

Re: How to keep row selected after pagination grid refresh?

2010-11-23 Thread Ahmed Shoeib
Thanks for your help On Nov 22, 3:50 am, John LaBanca jlaba...@google.com wrote: @ahmedelsayed.shoeib - Are you using a CellTable?  If so, you can push new data into a row to refresh it: myCellTable.setRowData(rowIndexToRefresh, Collections.singletonList(valueToRefresh)); Thanks, John

Re: RequestFactory remove() not working

2010-11-23 Thread poe
I've got the same problem. I catch an object with the find Method through the RequestFactory. When I try to remove the object with my remove Method the object send to the server is marked with UPDATE as if you've called request.edit().using(currentObject) before (which I didn't). When I remove

Re: Web Browser's history not saving last urls

2010-11-23 Thread Pablo G.F
Thanks, that works!! On 23 nov, 15:11, Thomas Broyer t.bro...@gmail.com wrote: On 23 nov, 14:11, Pablo G.F blay...@gmail.com wrote: Hello: I have a GWT application where I call some redirects (Window.Location.replace(url)). That URL is captured by a servlet and it passes the control to

Re: Deploying GWT application on a web server

2010-11-23 Thread Noor
Ok, I have undertand where to place the war folder. Now in case, I am using an RPC where and how the file be placed because the serve file are .java -- 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: Default value for @RemoteServiceRelativePath ?

2010-11-23 Thread David Balažic
What is RpcRefinable ? Google finds only this thread when searching for it. On Nov 23, 5:35 am, Didier Durand durand.did...@gmail.com wrote: Hi David, You can achieve what you want by using ServiceDefTarget of GWT. Here below some code snippet of mine dynamically creating a detailed url

Re: Deploying GWT application on a web server

2010-11-23 Thread Alex Nederlof
Hi, What always works for me is just copying the war folder to the Tomcat webapp folder. Don't forget to press GWT-compile button first. 1. Don't forget to add the required libraries to the WEB-INF/lib folder or else it won't work. 2. Don't forget to change absolute path names to required

GWT Compile Error with Tomcat (apache.commons) libary - classpath related

2010-11-23 Thread 7of9
I am using eclipse(Galileo)+tomcat plugin+gwt plugin. The project uses Spring MVC+ lots of JSP, only one part of the system using GWT. That is for menu items. At the moment, every single time I check out a project, I have to compile the GWT module before I start my tomcat. There is known problem

GWT Compile Error and more

2010-11-23 Thread 7of9
When compile GWT,I receive the following error: [ERROR] Unexpected java.lang.NoSuchFieldError: reportUnusedDeclaredThrownExceptionIncludeDocCommentReference I googled around and found the solution - Right-click the project Properties - Java Build Path Order and Export - Move the GWT SDK

Re: Sample App using DI/Gin, MVP, UiBinder, etc

2010-11-23 Thread Mauro Bertapelle
On 18 Nov, 16:38, Daghan dag...@gmail.com wrote: I am trying to figure out how to pass activityManager.setDisplay(composite) Implement AcceptOneWidget in your Composite, and in the setWidget method take care of inserting/removing the Activity's view in our Composite's receiving area -- You

gwt-user.jar does not contain classes for com.google.gwt.emul package

2010-11-23 Thread Max
Hello, I am using Maven plugin to pull down gwt-user dependency groupIdcom.google.gwt/groupId artifactIdgwt-user/artifactId version2.1.0/version scopeprovided/scope

Re: GWT Compile Error with Tomcat (apache.commons) libary

2010-11-23 Thread Sophia Shek
More details: I am using eclipse(Galileo)+tomcat plugin+gwt plugin, The java build libraries’ order: JRE System libary GWT SDK - GWT2.1.0 Apache Tomcat Web App Libraries The project uses Spring MVC+ lots of JSP, only one part of the system using GWT. That is for menu items. At the moment, every

Migrate GWT 2.0.4 Project to GWT 2.1.0

2010-11-23 Thread ju
Hello Edit: Also @ StackOverflow http://stackoverflow.com/questions/4255247/migrate-gwt-2-0-4-project-to-gwt-2-1-0 I update my Google Plugin (and GWT) version from 2.0.4 to 2.1.0 There are now some warnings for depricated function that I will fix, but the problem for me is this warning:

How to register some functions in client?

2010-11-23 Thread Xinyin
In most modern JavaScript framework, we could declare a set first. And then when new component comes, it will register to this set. Then how to do this with GWT? I've got a couple of components belonging to different modules. But when the project is delivered, it will include only some modules. To

a quick question about using GWT and jquery

2010-11-23 Thread stewie
hello guys, i'm a long time c++ programmer having very little experience with web development. my limited web developing experience can date back to my college time when i wrote some forum sites with php. i didn't quite like working with javascript, as i didn't know any javascript debugger that

Dynamic String Internationalisation : How to pass values

2010-11-23 Thread ravindran sridevi
Using Dynamic String Internationalisation how can i pass values to a message like this Input value within the range {0} to {1} -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

HexView using GWT

2010-11-23 Thread Lloyd
Hi, I am new to GWT. We are planning to build browser based complex user interface application. I have gone through the GWT web page. Is it possible to write a HexViewer using GWT? If yes, which method should I follow? A composite control or the java way? would it be possible to bring right

GWT 2.1 CellTable - set page size to fill up a containing layout

2010-11-23 Thread Valeri
Well, when we creating CellTable, one parameter is pageSize. I guess, the most common scenario for CellTable is to have enough rows to fill the entire container - not more, not less, and to change page size on resizing (in a SplitLayoutPanel, for example). Or, better, to share layout height with

Re: Deploying GWT application on a web server

2010-11-23 Thread Kenneth Jacker
Then make a WAR archive  (archive the war folder within your project folder) and deploy it e.g. on tomcat (copy the archive to tomcat's webapps directory). After tomcat discovered the new war and auto-deployed it, you're ready to go and can access the app via browser. What if the

Re: inheritance in Services that are used by RequestFactory RequestContext classes

2010-11-23 Thread David Chandler
See https://groups.google.com/d/topic/google-web-toolkit/rC9dEaX0mok/discussion 2.1.1 will eliminate the required static methods that currently prevent service inheritance. /dmc On Tue, Nov 23, 2010 at 7:13 AM, agi agata.p...@gmail.com wrote: Hallo, I am using RequestFactory in my project.

Re: How do you use Custom Widgets (Composites) multiple times?

2010-11-23 Thread jhulford
You can't do what you're asking. A widget instance can only be added to a single parent container. The code you posted looks ok though, so I'm guessing you probably have a typo in your real code where you're trying to add the same instance of FirstClass to elementA and elementB, which will cause

Re: Deploying GWT application on a web server

2010-11-23 Thread Noor
But only the client sides files are compiled to javascript then what happens to the server files, such as the a server file for handling rpc services -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: How do you use Custom Widgets (Composites) multiple times?

2010-11-23 Thread ep
what jhulford meant is that you really have to make a new on every widget class you add to any place. On 22 Nov., 06:00, Paul daemo...@gmail.com wrote: Sorry if this is somewhere else and I missed it, but I have a Custom Widget that I need to be able to add multiple times to another custom

TurnOff CompileReport

2010-11-23 Thread ale
Hi, how I can do to not generate the folder / target/extra/ [project_name]/soycReport/compile-report ?. Currently weighs about 393.1 MB. I'm using GWT 2.1.0 and Maven. Appreciate it you send me an example with maven. Thanks -- You received this message because you are subscribed to the Google

RequestFactory - how to fetch object graph

2010-11-23 Thread mp31415
By default RequestFactory(RF) fetches an entity proxy itself(the root) but does not fetch other entity proxies referenced from the root. In order to fetch referenced properties their names must be provided using with() method on the request(context). Is there a syntax to request proxies nested

Repeating Timer and onUnload()

2010-11-23 Thread Max Jonas Werner
Hi, I have built a widget for my GWT application that shows the latest actions users of the application have performed. To refresh this widget automatically I use a Timer and its schedule() method like this: private final Timer t = new Timer() { @Override public void run() {

Re: How to animate using ActivityManager

2010-11-23 Thread Thomas Broyer
On 23 nov, 15:45, Raphael André Bauer raphael.andre.ba...@gmail.com wrote: Hi, I am currently checking out possibilites to use animations  together with ActivityManagers of GWT 2.1. (using something like -webkit-transition-property: -webkit-transform;      -webkit-transition-duration:

Re: Integrating GWT Test cases in to Ant build

2010-11-23 Thread Thomas Broyer
On 23 nov, 13:12, Sreekanth Nambiar pk.sreeka...@gmail.com wrote: Hi,          Do anybody have sample code to demonstrate how GWT test cases can be integrated in to Ant build script? The ant script generated by webAppCreator contains test.dev and test.prod targets. The script is generated

Re: How to animate using ActivityManager

2010-11-23 Thread Raphael André Bauer
On Tue, Nov 23, 2010 at 6:06 PM, Thomas Broyer t.bro...@gmail.com wrote: On 23 nov, 15:45, Raphael André Bauer raphael.andre.ba...@gmail.com wrote: Hi, I am currently checking out possibilites to use animations  together with ActivityManagers of GWT 2.1. (using something like

Re: Default value for @RemoteServiceRelativePath ?

2010-11-23 Thread Didier Durand
Hi David, This is just an interface of mine indicating that the URL can refined: if the object is an instance, it supplies the sub-url to provide a more detailled url for the server log. regards didier On Nov 23, 4:34 pm, David Balažic xerc...@gmail.com wrote: What is RpcRefinable ? Google

Re: inheritance in Services that are used by RequestFactory RequestContext classes

2010-11-23 Thread Arash
@David I believe the url that you have mentioned is truncated. Can you please verify that. Thanks, Arash -- 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

Styling a TabLayoutPanel

2010-11-23 Thread poe
Hi @ all, i've got some problems styling a tabLayoutPanel. Normally the tabLayoutPanel with the tabHeaders is on the top of the contentPanels, but I want them to be at the bottom of the contentPanels. With pure CSS I don't see how that should work. Here ist the HTML that the tabLayoutPanel uses:

Re: inheritance in Services that are used by RequestFactory RequestContext classes

2010-11-23 Thread David Chandler
Ah, sorry, try https://groups.google.com/group/google-web-toolkit/browse_thread/thread/ac2f5d11a5f49a89?hl=ennoredirect=true Thanks, /dmc On Tue, Nov 23, 2010 at 1:02 PM, Arash rakhs...@gmail.com wrote: @David  I believe the url that you have mentioned is truncated. Can you please verify

Re: TurnOff CompileReport

2010-11-23 Thread David Chandler
In your pom.xml under gwt-maven-plugin configuration section, add soycfalse/soyc. For further help, please ask on the gwt-maven-plugin list. HTH, /dmc On Tue, Nov 23, 2010 at 11:00 AM, ale ale.sch...@gmail.com wrote: Hi, how I can do to not generate the folder / target/extra/

RequestFactory, Objectify, saving a new object with collections

2010-11-23 Thread Richard Berger
Goal: Save an object an associated collection How to do this with Request Factory and Objectify? I have an object that looks like: Commitment.java (in com.br.commit2.server.domain) public class Commitment { @Id private Long id; private String title; // other simple fields private

Re: RequestFactory, Objectify, saving a new object with collections

2010-11-23 Thread David Chandler
Hi Richard, RequestFactory doesn't yet support arrays. Use ListT instead. Also ensure that your Proxy doesn't expose the Objectify Key type, as only entity types and a few value types are supported until 2.1.1. /dmc On Tue, Nov 23, 2010 at 2:23 PM, Richard Berger richardlan...@gmail.com wrote:

Re: gwt using jquery effect possible?

2010-11-23 Thread bufferings
hi asianCoolz You can use jsni like following: /** * Starts the showing animation. * * @param id * The element id. */ private native void showAnimation(String id)/*-{ var options = {} var callback =

Getting started problems

2010-11-23 Thread Lee Sailer
I am following the Quickstart and User guide to make the very first little demo GWT app, but am having a problem that I guess is related to my wireless router/firewall, but so far research has not led me toward any solution. Eclipse 3.6, GWT Eclipse Plugin (latest, as of Nov 22?), APP Engine SDK,

Server Push with GWT

2010-11-23 Thread Noor
can someone guide me or points me to some tutorial which shows the implementation of server push technology with gwt 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

Re: Server Push with GWT

2010-11-23 Thread ciosbel
I think it's a bit outdated, but have a read: http://code.google.com/docreader/#p=google-web-toolkit-incubators=google-web-toolkit-incubatort=ServerPushFAQ On 23 Nov, 22:07, Noor baken...@gmail.com wrote: can someone guide me or points me to some tutorial which shows the implementation of

Re: Server Push with GWT

2010-11-23 Thread David Chandler
I know have some folks have had success with the open source project http://code.google.com/p/gwt-comet/ HTH, /dmc On Tue, Nov 23, 2010 at 4:30 PM, ciosbel andrew...@gmail.com wrote: I think it's a bit outdated, but have a read:

Re: RequestFactory, Objectify, saving a new object with collections

2010-11-23 Thread Richard Berger
Thank you for the quick and clear reply which completely fixed my problem. On a higher level, when support for Keys is added, should I use the Key or the Entity? I can see that there may be some value in just having the Key and getting the Entity when I need it - although it seems like I will

Re: RequestFactory, Objectify, saving a new object with collections

2010-11-23 Thread David Chandler
You're welcome, Richard, glad to help. My understanding is that Objectify always uses Keys to express relationships. If you want to retrieve the entity directly, you can add a getter/setter that calls Objectify to get / put an entity by its Key. These helper methods are likely what you would

Re: RequestFactory - how to fetch object graph

2010-11-23 Thread mp31415
It seems dot notation works (found in RequestFactory unit tests). Something along the lines .with(lines.start).with(lines.end). On Nov 23, 10:59 am, mp31415 mp_...@yahoo.com wrote: By default RequestFactory(RF) fetches an entity proxy itself(the root) but does not fetch other entity proxies

Re: Server Push with GWT

2010-11-23 Thread Ray Tayek
At 01:07 PM 11/23/2010, you wrote: can someone guide me or points me to some tutorial which shows the implementation of server push technology with gwt i did this part: http://code.google.com/p/google-web-toolkit-incubator/wiki/ServerPushFAQ#Server_Push_in_GWT and it seems to work ok.

Re: Server Push with GWT

2010-11-23 Thread Noor
Thanks for your answers, I wanted to know one more thing. When deploying a GWT application on the server, lets say an application in which there are client files Greeting.java(entrypoint), service.java,serviceAsync.java and server file serviceImpl.java(), only the client files will converted to

Re: a quick question about using GWT and jquery

2010-11-23 Thread Xinyin
You'd better have a look at GQuery. http://code.google.com/p/gwtquery/ On Nov 23, 9:25 am, stewie billco...@gmail.com wrote: hello guys, i'm a long time c++ programmer having very little experience with web development. my limited web developing experience can date back to my college time

System MAC Address

2010-11-23 Thread Anoop John
Is there any way to get the client system MAC address in gwt? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group, send email to

Re: System MAC Address

2010-11-23 Thread Xinyin
nope. MAC is physical, JavaScript would not be able to access this. On Nov 24, 11:08 am, Anoop John anoopjoh...@gmail.com wrote: Is there any way to get the client system MAC address in gwt? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: System MAC Address

2010-11-23 Thread Gaurav Vaish
No. You can only get the remote-IP address. -- Happy Hacking, Gaurav Vaish http://www.mastergaurav.com On Nov 24, 8:08 am, Anoop John anoopjoh...@gmail.com wrote: Is there any way to get the client system MAC address in gwt? -- You received this message because you are subscribed to the

Re: System MAC Address

2010-11-23 Thread Subhrajyoti Moitra
From GWT its not possible. But proxying it through the server it can be possible - send the remote ip to your server from GWT client. - execute ping remoteip command on the server. - execute arp -a on the server to see the address-mac table. Parse the contents of the output for the remote

Re: System MAC Address

2010-11-23 Thread Subhrajyoti Moitra
NOTE: only works on single subnet network. For other subnets look into the DHCP server table. if possible. But this is a long shot, without admin access, this would be impossible to do AFAIK. Thanks, Subhro. On Wed, Nov 24, 2010 at 8:59 AM, Subhrajyoti Moitra subhrajyo...@gmail.comwrote: From

Re: Getting started problems

2010-11-23 Thread Lee Sailer
Well, I started fresh on another Mac. It is working fine there. This is not feeling so urgent any more. Still be interesting to figure out what I did wrong before. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Giving focus to a node in a CellTree

2010-11-23 Thread David Pinn
The CellTree widget has a setFocus() method..cool; but I can't see how I can give keyboard focus to a specific node within the tree. Can someone help me with that? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Tutorial on ProxyPlace

2010-11-23 Thread -sowdri-
Dear All, I'm new to GWT and I've since learned the GWT 2.1 MVP framework, which is quite straight forward. Source: http://code.google.com/webtoolkit/doc/latest/DevGuideMvpActivitiesAndPlaces.html In a future article, we'll look more in depth at the new model features (RequestFactory,

How does UIBinder attributes map to methods / properties of the Java object ?

2010-11-23 Thread John Gentilin
I am trying to determine what attributes are available for different GWT widgets and it is unclear to me how the attribute mapping exists from UIBinder to the actual Java implementation. Also how are constructors mapped. i.e. How would you specify a g:Grid to be sized to 5 x 5 from the UIBinder

[gwt-contrib] Re: Add support for RpcTokens, which, if set, are sent with each RPCRequest to (issue1107801)

2010-11-23 Thread meder
http://gwt-code-reviews.appspot.com/1107801/diff/3001/4005 File user/src/com/google/gwt/user/client/rpc/ServiceDefTarget.java (right): http://gwt-code-reviews.appspot.com/1107801/diff/3001/4005#newcode43 user/src/com/google/gwt/user/client/rpc/ServiceDefTarget.java:43: RpcToken getRpcToken();

[gwt-contrib] Re: Add support for RpcTokens, which, if set, are sent with each RPCRequest to (issue1107801)

2010-11-23 Thread meder
http://gwt-code-reviews.appspot.com/1107801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fixes two DevMode issues: (issue1140801)

2010-11-23 Thread knorton
http://gwt-code-reviews.appspot.com/1140801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Reduces the size of the soyc report by combining many s (issue1139801)

2010-11-23 Thread kprobst
LGTM. This is another great change - thanks! http://gwt-code-reviews.appspot.com/1139801/diff/1/2 File dev/core/src/com/google/gwt/soyc/MakeTopLevelHtmlForPerm.java (right): http://gwt-code-reviews.appspot.com/1139801/diff/1/2#newcode789

[gwt-contrib] Fixing JavaDoc warnings in Cell Widgets. (issue1143801)

2010-11-23 Thread jlabanca
Reviewers: pdr, Description: Fixing JavaDoc warnings in Cell Widgets. Please review this at http://gwt-code-reviews.appspot.com/1143801/show Affected files: M user/src/com/google/gwt/user/cellview/client/AbstractHasData.java M

[gwt-contrib] Re: Add support for RpcTokens, which, if set, are sent with each RPCRequest to (issue1107801)

2010-11-23 Thread jat
LGTM http://gwt-code-reviews.appspot.com/1107801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Re: Enum Ordinalization Optimization (revised) (issue1133801)

2010-11-23 Thread Ray Cromwell
Ok, lgtm (crosses fingers this time! :) ) On Mon, Nov 22, 2010 at 1:09 PM, Jason Rosenberg jbrosenb...@google.com wrote: Ray, Good question, but yeah, that case will be handled too.   Leaf types don't get visited for arrays at all (thus the root cause of this problem).   I have added

[gwt-contrib] Re: First-pass for adding HTML5's Canvas. (issue1082801)

2010-11-23 Thread pdr
http://gwt-code-reviews.appspot.com/1082801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: First-pass for adding HTML5's Canvas. (issue1082801)

2010-11-23 Thread pdr
http://gwt-code-reviews.appspot.com/1082801/diff/101001/102006 File user/src/com/google/gwt/canvas/dom/client/CanvasPixelArray.java (right): http://gwt-code-reviews.appspot.com/1082801/diff/101001/102006#newcode54 user/src/com/google/gwt/canvas/dom/client/CanvasPixelArray.java:54: * Most

[gwt-contrib] Re: Fixing JavaDoc warnings in Cell Widgets. (issue1143801)

2010-11-23 Thread pdr
LGTM With the theme of fixing translater-translator, could CheckboxEventTranslater be changed to CheckboxEventTranslator as well? http://gwt-code-reviews.appspot.com/1143801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

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

2010-11-23 Thread codesite-noreply
Comment by vinays.work: I am seriously disappointed with the Editor framework. What we need is a Bean Binding framework much like those that have existed in Swing. You just associate the bean property with the widget and the interchange of UI value with the bean needs to be automatic. JSF

[gwt-contrib] Re: IE devmode plugin: 64 bits support end-to-end, build fixes cleanup, other polishing items. (issue1116801)

2010-11-23 Thread fabiomfv
http://gwt-code-reviews.appspot.com/1116801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: IE devmode plugin: 64 bits support end-to-end, build fixes cleanup, other polishing items. (issue1116801)

2010-11-23 Thread conroy
On 2010/11/23 17:07:10, fabiomfv wrote: LGTM if LGT jatknorton http://gwt-code-reviews.appspot.com/1116801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

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

2010-11-23 Thread Patrick Julien
On Tue, Nov 23, 2010 at 11:18 AM, codesite-nore...@google.com wrote: Comment by vinays.work: I am seriously disappointed with the Editor framework. What we need is a Bean Binding framework much like those that have existed in Swing. You just associate the bean property with the widget and

[gwt-contrib] Re: Fixes two DevMode issues: (issue1140801)

2010-11-23 Thread scottb
LGTM http://gwt-code-reviews.appspot.com/1140801/diff/6001/7002 File dev/core/src/com/google/gwt/core/ext/typeinfo/TypeOracle.java (right): http://gwt-code-reviews.appspot.com/1140801/diff/6001/7002#newcode687 dev/core/src/com/google/gwt/core/ext/typeinfo/TypeOracle.java:687: JMethod found =

[gwt-contrib] Re: Fixes two DevMode issues: (issue1140801)

2010-11-23 Thread knorton
http://gwt-code-reviews.appspot.com/1140801/diff/6001/7002 File dev/core/src/com/google/gwt/core/ext/typeinfo/TypeOracle.java (right): http://gwt-code-reviews.appspot.com/1140801/diff/6001/7002#newcode687 dev/core/src/com/google/gwt/core/ext/typeinfo/TypeOracle.java:687: JMethod found =

[gwt-contrib] Re: Add support for touch events for supported mobile webkit platforms. (issue867801)

2010-11-23 Thread fredsa
http://gwt-code-reviews.appspot.com/867801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Factors out TypeOracleMediator.computeBinaryClassName() into a separate class file. (issue1144801)

2010-11-23 Thread zundel
Reviewers: tobyr, jbrosenberg, scottb, Description: Factors out TypeOracleMediator.computeBinaryClassName() into a separate class file. This function doesn't really have anything to do with the type oracle mediator. Moving it gets rid of most code references to the TypeOracleMediator class.

[gwt-contrib] Re: Factors out TypeOracleMediator.computeBinaryClassName() into a separate class file. (issue1144801)

2010-11-23 Thread zundel
This is a mechanical change - I am working on an alternate implementation of TypeOracleMediator and this static method is needed in lots of places, not just in building the type oracle. http://gwt-code-reviews.appspot.com/1144801/show --

[gwt-contrib] Re: Factors out TypeOracleMediator.computeBinaryClassName() into a separate class file. (issue1144801)

2010-11-23 Thread scottb
http://gwt-code-reviews.appspot.com/1144801/diff/1/3 File dev/core/src/com/google/gwt/dev/javac/TypeUtils.java (right): http://gwt-code-reviews.appspot.com/1144801/diff/1/3#newcode28 dev/core/src/com/google/gwt/dev/javac/TypeUtils.java:28: public class TypeUtils { Shouldn't this be in

[gwt-contrib] Re: Add support for touch events for supported mobile webkit platforms. (issue867801)

2010-11-23 Thread jgw
On 2010/11/23 21:08:03, fredsa wrote: LGTM http://gwt-code-reviews.appspot.com/867801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Update JUnit from DeferredCommand to Scheduler. (issue1145801)

2010-11-23 Thread scottb
Reviewers: conroy, Message: Because DeferredCommand is deprecated. Please review this at http://gwt-code-reviews.appspot.com/1145801/show Affected files: user/super/com/google/gwt/junit/translatable/com/google/gwt/junit/client/impl/GWTRunner.java Index:

[gwt-contrib] Remove the implementation from GWTTestCase checkpoints. (issue1146801)

2010-11-23 Thread scottb
Reviewers: conroy, Message: Been deprecated for a while, time to remove the implementation. Please review this at http://gwt-code-reviews.appspot.com/1146801/show Affected files: M user/src/com/google/gwt/junit/client/GWTTestCase.java M

[gwt-contrib] Fix to allow devmode exceptions to be reported back from a client. (issue1147801)

2010-11-23 Thread scottb
Reviewers: conroy, Message: When I converted JUnit to use normal serialization to transmit exceptions, I introduced a problem. In DevMode, exceptions can get into the client space from the hosting environment, such as HostedModeException. Because these types are not visible to the client, they

  1   2   >