Re: When is an object passed over RPC safe to modify?

2011-03-29 Thread Craig Mitchell
I won't be losing any sleep over it. Our data object structure is pretty robust, so it would be highly unlikely that it would be able to become invalid. Also, I'd be surprised if the RPC serialization occurred in anything but the current JS thread of execution. So I'd be a stunned mullet if we

Re: Howto: Optimising RPC

2011-03-29 Thread George Georgovassilis
Hello Gal, Sorry, I've had so far no experience with code splitting, my applications are all monolithic beasts. I guess the real bloat is not the DTOs but the marshalling code generated for RPC, right? I can think of a possible solution (haven't tested this) but it's ugly: assuming that my

Re: IE developer plugin installation

2011-03-29 Thread Eike Reifhardt
Hi Fabio, yep, it ist installed. I'm curently trying to install it under Windows7 and it is listed under the installed Programms and I've registered the DLL successfully. However - it doesn't appear under the AddOns section inside the IE. Eike On 25 Mrz., 19:44, FabioV fabio...@google.com

RequestFactory with parameter

2011-03-29 Thread Metronome Basic
When chaining Entities I have to call findXXX(record) . with() Is it required or is there a way to declare the Entity so that is always included in EntityProxy Thanks Patrick -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group.

Re: TabLayoutPanel

2011-03-29 Thread cvh
Hello Marco, This is what I do: 1. client code: DecoratedTabPanel tabPanel = new DecoratedTabPanel(); tabPanel.setStylePrimaryName(tabPanel); tabPanel.setAnimationEnabled(true); 2. CSS: .tabPanel { width:99%; height:99%; position:fixed; top:5px;

Re: AutoBean and Generic types (Server-side)

2011-03-29 Thread Thomas Broyer
It could be related to http://code.google.com/p/google-web-toolkit/issues/detail?id=5926 -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this

Re: EditTextCell with Editor

2011-03-29 Thread Thomas Broyer
You can use any Cell as a widget using the CellWidget. Unfortunately, CellWidget is neighter an Editor nor an IsEditor (that's a bug IMO, so I opened an issuehttp://code.google.com/p/google-web-toolkit/issues/detail?id=6206), so you'll have to create an Editor instance yourself. Fortunately,

How to ensure LayoutWidget resizes on iPhone?

2011-03-29 Thread Philippe Beaudoin
My app uses LayoutWidgets to create full screen widgets that resize automatically with the browser window. This works very well on all desktop browsers but, on iPhone, it seems to snap to an arbitrary size that has nothing to do with the iPhone screen. That's unfortunate since the app would

Re: EditTextCell with Editor

2011-03-29 Thread -sowdri-
Thanks Thomas! -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com. For

Re: RPC Problem with HashMap containing ArrayList Value

2011-03-29 Thread SergeZ
If I got you right, than, the first part of my first post comes up! Instead of declaring all your generics using Serializable object, you can just declare ( in the shared package ) all your possible combinaitons ( the whole veriety of all your non-trivial types ) and than, in your client-side

Re: IE developer plugin installation

2011-03-29 Thread FabioV
GWT devmode plugin will not show in the IE add-ons list - that is expected, but that should not prevent it from working. give it a try and let us know. if you want to know the technical reason why it does not show in the add ons list, here it goes: in order to show in the add ons list, it

How to pass parameters to Token based Activity and Place URL

2011-03-29 Thread Kayode Odeyemi
Hello, I have successfully integrated Activity and Place into my application such that my Places are now tokenized. However, I want to take my application to another level by parameterizing my Places with URLs such as http://mysite.com/myplace#place?view=home, and then be able to get the

a simple POST with formData

2011-03-29 Thread mightymightyblues
Hi, I have this code: public native void callServer() /*-{ var fd = new FormData(); fd.append(fileField, hola); var xhr = new XMLHttpRequest(); xhr.open(POST, file_handler.php); xhr.send(fd); }-*/; But the debug say:

Re: How to pass parameters to Token based Activity and Place URL

2011-03-29 Thread Rikard Hultén
I think you are confusing URL query parameters ?variable=value with the token associated with a place #place:token -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To

Re: How to pass parameters to Token based Activity and Place URL

2011-03-29 Thread Kayode Odeyemi
To be clearer, I want to append URL query parameter to a Place. If I am to use RequestBuilder, can it be used to navigate to a Place as long as the Place and its corresponding token exists? I hope this is clear enough. On 3/29/11, Rikard Hultén rikardhul...@gmail.com wrote: I think you are

Re: a simple POST with formData

2011-03-29 Thread Juan Francisco Gato Luis
Ups, my doom ass, I was making this run on a not new browser, so don't know what to do with the FormData, now in chrome it's works. Thanks, now I gonna make some test using this on a servert ( and take a look the CORS compatibility ) Sorry for the mess! On Tue, Mar 29, 2011 at 2:25 PM,

Re: a simple POST with formData

2011-03-29 Thread jgonian
I think that you should take a look to the following classes: - RequestBuilderhttp://google-web-toolkit.googlecode.com/svn/javadoc/2.2/com/google/gwt/http/client/RequestBuilder.html for XHR requests and/or -

Overriding panel's iterator() prevents clickHandler from being called.

2011-03-29 Thread Olivier Diotte
Hi, I am new to GWT (and not that expert in Java) and I have a problem I haven't been able to solve. Here's my problem: I want to do a panel (say a VerticalPanel) but also want it to have scroll bars. So, what I did was to nest a VerticalPanel in a ScrollPanel and then overrode the latter's

The domain type Foo_$$_javassist_45 cannot be sent to the client

2011-03-29 Thread Stefan
Hi Guys, I am having an issue using GWT 2.2 RequestFactory and Hibernate 3.6. My domain model is looks like this: class Bar { Long id; String title; Foo foo; } class Foo { Long.id; String title; } So, I am trying to populate a CellTable using request factory with Bar.id, Bar.title,

Editor with various data types

2011-03-29 Thread James Calfee
Shouldn't the Editor work with various data types? Booleans and checkboxes work. However, the Integer and the TextBox do not work. I should at least see an error, instead I see nothing. Do we have documentation for this yet? See com.google.gwt.requestfactory.client.RequestFactoryEditorDriver

Canvas performance

2011-03-29 Thread Markus
Hey, I tried some tests with the canvas objekt. I create a canvas an redraw the canvas every ms, so I get the FPS for the drawing If i use the drawImage method of the Context2d the performance is very bad. I draw currently about 160 images on a canvas 1920x1200 But I only get 50-60

Re: Older version of GWT Eclipse plugin

2011-03-29 Thread Gauthier Dubois
For those who are looking for it, you can download old version of gwt at: http://code.google.com/webtoolkit/versions.html I just unpacked it in the directory my_eclipse_dir/plugin/, then go to eclipse, edit and changed my gwt sdk path under project properties and make it pointing to the new

Relational Database with Drag and Drop Operations

2011-03-29 Thread xerife
Hello, I am a student and want to make the final draft with a Dynamic Schedule Manager. It was proposed to work in Java. Restriction: Should use GWT with GXT (optional) + Relational Database (eg MySql) and will operate with a Drag and Drop library. The Drag and Drop operations are going to

Compile error: No source code is available for type

2011-03-29 Thread drhender
I am attempting to get the wave-in-a-box project building on Windows, and am seeing errors in the GWT compilation. Compiling module org.waveprotocol.box.webclient.WebClient Validating newly compiled units [ERROR] Errors in 'file:/D:/dev/wave/WPL-wave-protocol/proto_src/

Re: GWT 2.2 on linux: Designer not wokring

2011-03-29 Thread MichaelUFL
Summary: GWT Designer Beta crashes eclipse after initialization timeout Detail: I am a GWT newbie setting up on CentOS 5.6. Fresh Eclipse Helios 3.6 SR2 install. I installed GWT Designer to go through tutorials. I encountered problem with: No GWT support found for this system I did my best

How to add ClickHandler for Div Element?

2011-03-29 Thread varakumar pjd
Hi, I created a div element and appended it to a text box as a child. It is working fine. Now I want to add click handler for that div element. Can you please suggest me for this problem. Thanks, Vara Kumar PJD -- You received this message because you are subscribed to the Google

Re: a simple POST with formData

2011-03-29 Thread Ed
I had the same problem some time ago and came up with a class called FormBuilder that does just that. The idea: use invisible (Display: none) FormPanel and fill it correctly and post it to the backend. RequestBuilder is nice, but not if you need a synchronized call to the backend like a FORM

Re: Overriding panel's iterator() prevents clickHandler from being called.

2011-03-29 Thread Ben Imp
You shouldn't need to override any methods just to add scrollbars. Im curious as to why you want to do that. You should be able to just nest the panels, as you have done. -Ben On Mar 29, 12:40 am, Olivier Diotte oliv...@diotte.ca wrote: Hi, I am new to GWT (and not that expert in Java) and

RequestFactory, force field change

2011-03-29 Thread Lars
I understand the intention behind the RequestFactorys diff mechanism - but what if you want some field to be set (i.e. to transmitt a field even though it hasn't changed)? I have the following scenario: Multiple server-instances, no ORM- caching (shared nor individual), I do however want to cache

Re: The domain type Foo_$$_javassist_45 cannot be sent to the client

2011-03-29 Thread Lars
Actually there is. I encontered the same problem with some Guice- enhanced classes. You can write a custom decorator and override the appropriate methods. Here's my implementation - to get you started: public class GuiceDecorator extends ServiceLayerDecorator { @Override public

where to put my Module.css file

2011-03-29 Thread Martin Trummer
most GWT doc says, I should put it in the public dir: e.g. src/main/java/com/mydomain/prj/public/Module.css the module file would be here: src/main/java/com/mydomain/prj/Module.gwt.xml but now when I want to use this in a ClientBundle, say in:

Returning URL from RPC

2011-03-29 Thread azuniga
I make a call to and rpc and the rpc returns a string. The string is the name of a business report generated, report.html. Now I want the client to embed this html in the app, so I use a Frame widget. Now I want to know how to instantiate this frame, since I have been trying Frame frame = new

Re: Canvas performance

2011-03-29 Thread Brian Reilly
Not a GWT-specific question, but you are using canvas through GWT, so... You're doing well by using pre-rendered images and drawing them to your main screen. In some of my initial experiments using canvas, I was using the canvas drawing functions (lines, arcs, etc.). I got a large speed boost by

Re: RequestFactory, force field change

2011-03-29 Thread Thomas Broyer
See http://code.google.com/p/google-web-toolkit/issues/detail?id=6046 and the related discussion. No feedback from Google so far. -- 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: Returning URL from RPC

2011-03-29 Thread Harald Schilly
When you do GWT.log(report path: + GWT.getHostPageBaseURL() + report.html); in hosted mode, you can see the path in the log. Copy/Paste it into your webbrowser and see if it is valid. That will help you tracking down how to enter the correct path. H -- You received this message because you

Re: Returning URL from RPC

2011-03-29 Thread Ben Imp
I suppose the obvious thing to investigate would be whether ???/ myfolder/report.html is visible to http requests. That will depend on where exactly your code is writing this HTML file to and whether your app server and/or web server allow reading from that location. -Ben On Mar 29, 10:26 am,

Re: Howto: Optimising RPC

2011-03-29 Thread Paul Stockley
I had the same issue with the command pattern. The problem is that all commands/results implement a common interface. The first time the service is created, it needs all the Marshalling code for all commands/results. The only way to avoid this is to have different services that define unique

Re: Clickable image in a CellTable changing cell types

2011-03-29 Thread Yaakov Chaikin
Hmm... I don't know if this is so great. It can probably work, but I am hoping there is less of a hack solution to this. A custom cell? Seems like that's what should be done, but I am not sure not sure how to attempt something like that. Anyone? Thanks, -Yaakov. On Mon, Mar 28, 2011 at 3:11 PM,

Re: Returning URL from RPC

2011-03-29 Thread Kayode Odeyemi
Thanks for asking this question. I want to see how you used the rpc to return back to the client an html page. Did you do a redirect on onSuccess? WIll appreciate your snippet. On 3/29/11, Ben Imp benlee...@gmail.com wrote: I suppose the obvious thing to investigate would be whether ???/

Re: JavaScriptObject array for Java Objects

2011-03-29 Thread Javier
Anyone? So far I'm pushing Java POJO's into JSO arrays with no problems but would like to make sure that this is safe. Many thanks. On 27 mar, 18:25, Javier javierferre...@gmail.com wrote: In my app I use JsArray extensively to store my overlays. I use java.util.List to store my client-side

Re: Clickable image in a CellTable changing cell types

2011-03-29 Thread Thomas Broyer
Search the archives, others have asked the same before. You'd have to extend the Image{,Resource}Cell and override getConsumedEvent and onBrowserEvent (and maybe onEnterKeyDown, depending on your needs) -- You received this message because you are subscribed to the Google Groups Google Web

UIBinder style de-obfuscator

2011-03-29 Thread A. Stevko
I think I've found a trick and wanted input on if it'll screw anything else up. The UIBinder is really really nice but the bundling of the stylesheets makes it totally undecipherable to see which style is being applied. So I added a directive that preserved the name within the style using a

Re: Clickable image in a CellTable changing cell types

2011-03-29 Thread Thomas Broyer
On Tuesday, March 29, 2011 6:14:35 PM UTC+2, Yaakov wrote: Ok, I'll try to find it. Thanks. What about #2? How would one accomplish that? I'd go a similar path: copy EditTextCell and make it generate a select and options instead of the input type=text (probably copy some code from

Re: Clickable image in a CellTable changing cell types

2011-03-29 Thread Yaakov Chaikin
Ok, I'll try to find it. Thanks. What about #2? How would one accomplish that? -Yaakov. On Tue, Mar 29, 2011 at 12:11 PM, Thomas Broyer t.bro...@gmail.com wrote: Search the archives, others have asked the same before. You'd have to extend the Image{,Resource}Cell and override getConsumedEvent

Re: UIBinder style de-obfuscator

2011-03-29 Thread Thomas Broyer
As the docshttp://code.google.com/webtoolkit/doc/latest/DevGuideUiBinder.html#Hello_Stylish_Worldsay, UiBinder actually just generates a ClientBundle and CssResource, so the same levers and knobshttp://code.google.com/webtoolkit/doc/latest/DevGuideClientBundle.html#Levers_and_Knobs apply,

Re: Returning URL from RPC

2011-03-29 Thread Harald Schilly
On Tue, Mar 29, 2011 at 18:11, azuniga alessandro.zun...@gmail.com wrote: How do I make the file visible to http requests? A file in /war/* is visible. I think we still don't really know what you want to accomplish, when you file is created and so on. Also, is the URL valid? H -- You received

Re: Returning URL from RPC

2011-03-29 Thread azuniga
I'm testing this in development mode and when I do the GWT.log and find the path, and type it in the browser I get the 404 file not found error. How do I make the file visible to http requests? Is there a place I should be storing the file, like a public folder under the war file or something? On

Re: Clickable image in a CellTable changing cell types

2011-03-29 Thread Yaakov Chaikin
On Tue, Mar 29, 2011 at 12:17 PM, Thomas Broyer t.bro...@gmail.com wrote: On Tuesday, March 29, 2011 6:14:35 PM UTC+2, Yaakov wrote: Ok, I'll try to find it. Thanks. What about #2? How would one accomplish that? I'd go a similar path: copy EditTextCell and make it generate a select and

Re: Clickable image in a CellTable changing cell types

2011-03-29 Thread Thomas Broyer
On Tuesday, March 29, 2011 6:43:14 PM UTC+2, Yaakov wrote: On Tue, Mar 29, 2011 at 12:17 PM, Thomas Broyer t.br...@gmail.com wrote: On Tuesday, March 29, 2011 6:14:35 PM UTC+2, Yaakov wrote: Ok, I'll try to find it. Thanks. What about #2? How would one accomplish that? I'd go

Re: Returning URL from RPC

2011-03-29 Thread azuniga
What I'm trying to do is add the html page which is the report, to the tab panel. I moved the report to the war file and I'm able to embed it in my app. When I tried the url, i would always get the 404 error, until I moved it. I guess it was not visible or accessible to the web app because I

Re: Adding event handlers to elements in HTML-style UiBinder

2011-03-29 Thread Steve C
Actually, it looks like I do need the Element.as(). Without it, I have a reference to an EventTarget, not an Element. -- 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: RequestFactory, force field change

2011-03-29 Thread Lars
Thanks Thomas. Reading the issue (again) I can see that my problem is clearly related. Lets just hope that some 'hooks' that allows us to deal with this issue are implemented in the near future. On 29 Mar, 17:40, Thomas Broyer t.bro...@gmail.com wrote:

Overriding panel's iterator() prevents clickHandler from being called.

2011-03-29 Thread Olivier Diotte
Hi, I am new to GWT (and not that expert in Java) and I have a problem I haven't been able to solve. Here's my problem: I want to do a panel (say a VerticalPanel) but also want it to have scroll bars. So, what I did was to nest a VerticalPanel in a ScrollPanel and then overrode the latter's

Re: SafeHtmlUtils on the server side

2011-03-29 Thread Matt
The code in question is located in gwt-dev.jar and when I do use that jar it works. It just seems odd that they would place a class inside of gwt-servlet.jar and not have it fully function. I am a bit hesitant to put gwt-dev.jar on my classpath as it is not supposed to be used server side. Perhaps

Re: SafeHtmlUtils on the server side

2011-03-29 Thread Juan Pablo Gardella
It isn't recomend use gwt-dev in server side. It have a lot of libs inner the jar. 2011/3/29 Matt viper2...@gmail.com The code in question is located in gwt-dev.jar and when I do use that jar it works. It just seems odd that they would place a class inside of gwt-servlet.jar and not have it

Re: CellWidget and RequestFactory the correct order of RequestFactory calls

2011-03-29 Thread Pedro Perez
zixzigma zixzigma@... writes: one of my concern is as RangeChangeEvent fires, and AsyncDataProvider fetches data for new range,the CellWidget flashes, in other words from the time I click Pager, to the time data get fetched for new page(range),the CellWidget (list/table) becomes blank, with

Spring Security

2011-03-29 Thread Alexei Telles
Hi, I need to implement Spring Security in my GWT web application. Does anybody know a good tutorial to get me started? Thank you in advance. -- 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: Spring Security

2011-03-29 Thread ciosbel
It's two years old, but you can start here: http://seewah.blogspot.com/2009/02/gwt-and-spring-security.html -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To

Re: Spring Security

2011-03-29 Thread ciosbel
and here http://raibledesigns.com/rd/entry/integrating_gwt_with_spring_security -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send

Re: Spring Security

2011-03-29 Thread Juan Pablo Gardella
I protect the app with spring security in two manner: 1) Protect URL with filter provided with spring security. 2) I protect my service with JSR250 (you can enable in spring). 3) Implement a interface, a wrapper of SpringSecurity classes, that I query userid and if the user is logged. Juan

multipart/form-data dev. mode - servlet randomly gets corrupted stream

2011-03-29 Thread Y2i
When I submit a form in dev. mode (using FormPanel, Hidden, FileUpload) the servlet gets correct parts from the request stream a couple of times, and then on the following submits the stream gets randomly corrupted. Printing the data to the console shows that the reading starts in the middle of

very few GWT talk at Google IO 2011

2011-03-29 Thread Trey Roby
Does anyone know why there are so few GWT talks at Google IO 2011? The last two years had enough talks to fill two days, this year there are only 4 so far. There is not even a GWT track. It is become Developer Tools. Does this say anything about GWT's health at Google? -- You received this

Re: very few GWT talk at Google IO 2011

2011-03-29 Thread David Chandler
Actually, not all the I/O sessions have been published to the I/O Web site yet. There will be about a dozen sessions in the Dev Tools track, mostly about GWT. The name was generalized to Dev Tools because some tools like Google Plugin for Eclipse support multiple Google technologies (GWT + App

Re: very few GWT talk at Google IO 2011

2011-03-29 Thread nino ekambi
GWT aint going no where dont worry:) Even if i have to develop the whole thing myself(Note i dont even know 10% on what s goin on inside gwt), i will :) 2011/3/29 Trey Roby rob...@gmail.com Does anyone know why there are so few GWT talks at Google IO 2011? The last two years had enough talks

Re: Returning URL from RPC

2011-03-29 Thread Kayode Odeyemi
Can you please just share a one liner on how you return a .html request from your rpc. Regards On 3/29/11, azuniga alessandro.zun...@gmail.com wrote: What I'm trying to do is add the html page which is the report, to the tab panel. I moved the report to the war file and I'm able to embed it

Re: RPC Problem with HashMap containing ArrayList Value

2011-03-29 Thread ciosbel
I mean that instead using ListSerializable as base type (that will create a serialization policy for all types that extend Serializable), you just use ListMyDTO where MyDTO is public interface MyDTO extends Serializable { } then gwt will create a serialization policy only for all types that

Re: Designer Problem : « uibinder template should be in client package »

2011-03-29 Thread Eric Clayberg
That error message is very specific about the file being in the wrong place. I suppose there could be some other problem with the structure of the project, so we would need to see a complete test case project in order to see what the actual problem is. On Mar 28, 3:08 pm, HommeDeJava

RE: How to add ClickHandler for Div Element?

2011-03-29 Thread Armishev, Sergey
Better to use widgets. I am using HTMLPanel to wrap my divs. My example has clickable image with text which is ready for internationalization. Actually 3 images where 2 are for some common background and the third gives item specific image. You also better make cursor to be a pointer when mouse

Re: Spring Security

2011-03-29 Thread Ido
This is a good tutorial to start with.. http://www.javacodegeeks.com/2010/12/securing-gwt-apps-with-spring-security.html -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

RE: Spring Security

2011-03-29 Thread Armishev, Sergey
Jeff Dwyer. Pro Web 2.0 Application Development with GWT. Great book. All code is ready. Just take it. It is much much more then just security in this book. I bought it for $10. Unfornunately it is about GWT 1.5 on the client side but still most of the ideas and code is pretty much usefull

Re: GWT 2.2 on linux: Designer not wokring

2011-03-29 Thread Andy Nguyen
Micheal did you use: Eclipse IDE for Java EE Developers? On Mon, Mar 28, 2011 at 10:21 PM, MichaelUFL mich...@uforlife.com wrote: Summary: GWT Designer Beta crashes eclipse after initialization timeout Detail: I am a GWT newbie setting up on CentOS 5.6. Fresh Eclipse Helios 3.6 SR2

Making RPC access logs intelligible

2011-03-29 Thread Jeff Schnitzer
GWT's RPC system produces distinctly unfriendly access logs. When I look at my logs (especially the GAE dashboard), every RPC basically boils down to a single line item for the whole servlet (and all the various RPC methods): /mymodule/myservletNNN requests avg MMM ms each I really want

Re: very few GWT talk at Google IO 2011

2011-03-29 Thread Y2i
Great to hear, thanks David! -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send email to

Re: When is an object passed over RPC safe to modify?

2011-03-29 Thread Martin Larsson
On 29. mars 2011 08:30, Craig Mitchell wrote: Also, I'd be surprised if the RPC serialization occurred in anything but the current JS thread of execution. So I'd be a stunned mullet if we ran into trouble. True. The more I think about it, the more likely this seems. Doing serialization in

Re: very few GWT talk at Google IO 2011

2011-03-29 Thread Brendan Doherty
David, For those of us who can't make it Google I/O, would it be possible make the videos of the sessions available for download. YouTube is great for watching the videos at a computer, but not so good for listening to while driving in my car. Thanks, Brendan -- You received this

Re: The domain type Foo_$$_javassist_45 cannot be sent to the client

2011-03-29 Thread Stefan
Lars, thanks a bunch. The trick with the ServiceLayerDecorator worked like a charm :) For other the benefit of other readers: - I did not need the resolveLocator() and createLocator() methods. My entity objects did conform to the RequestFactory specification so I did not need custom locators. -

Re: UIBinder style de-obfuscator

2011-03-29 Thread A. Stevko
Thanks for the tip on the levers and knobs Thomas. I had assumed that setting the compiler output style to pretty would be also alter the uibinder output too. For me, ClientBundle has taken a backseat to figuring out Editor and cell widgets. On Tue, Mar 29, 2011 at 9:16 AM, Thomas Broyer

Alguien de Argentina?

2011-03-29 Thread Gal Dolber
-- Guit: Elegant, beautiful, modular and *production ready* gwt applications. http://code.google.com/p/guit/ -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To

Re: GWT 2.2 on linux: Designer not wokring

2011-03-29 Thread Michael Howard
Andy, Thank you for your response. I just checked and I did *not* install the Eclipse IDE for Java EE Developers. I am downloading it now and will try again. Q: Was there someplace in the GWT doc that told me I should use the Java EE version of Eclipse? Or should that just have been common

Re: Making RPC access logs intelligible

2011-03-29 Thread Jeff Schnitzer
Browsing through the GWT code some more, it doesn't look promising. Is there any way to look at the output of the RpcProxyCreator? Reading code is ok, reading code that generates code tortures my brainmeats. Jeff On Tue, Mar 29, 2011 at 2:28 PM, Jeff Schnitzer j...@infohazard.org wrote: GWT's

GWT, Canvas and ImageResources

2011-03-29 Thread Christopher
Howdy all, Do anyone have experience of a project with a lot of image data? I'm creating a Canvas based game through GWT. It's based on a bunch of ClientBundleWithLookups, a total of ~400 images. Everything works quite well. One problem I have tho, is that in dev mode, it can take almost a

Re: Alguien de Argentina?

2011-03-29 Thread Juan Pablo Gardella
jajaj 2011/3/29 Gal Dolber gal.dol...@gmail.com -- Guit: Elegant, beautiful, modular and *production ready* gwt applications. http://code.google.com/p/guit/ -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: Alguien de Argentina?

2011-03-29 Thread Gal Dolber
el chiste? On Tue, Mar 29, 2011 at 9:16 PM, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: jajaj 2011/3/29 Gal Dolber gal.dol...@gmail.com -- Guit: Elegant, beautiful, modular and *production ready* gwt applications. http://code.google.com/p/guit/ -- You received this

why are important methods in HTMLTable protected?

2011-03-29 Thread Kayode Odeyemi
if Grid is a class implementation of HTMLTable, why are most of the methods such as setCellFormatter(), setColumnFormatter etc, protected? How am I expected to access these methods from the instantiation of Grid. How can I use HTMLTable? Regards -- Odeyemi 'Kayode O. B.Sc(Hons) Econs,

Re: shuttle component

2011-03-29 Thread Vik
anyone on this please? Thankx and Regards Vik Founder http://www.sakshum.org http://blog.sakshum.org On Sun, Mar 27, 2011 at 3:31 PM, Vik vik@gmail.com wrote: Hie Does gwt has any shuttle component in which we can chose options from left and move to right as selected? If no then

Re: GWT, Canvas and ImageResources

2011-03-29 Thread Philippe Beaudoin
Here's a dirty hack that I've never tried but which may work... If your ClientBundleWithLookup doesn't change too often, you could pre-generate the implementation through a GWT-compile (with the -gen option). Once you have the class (or classes?) add them to your project. Then you have two

Re: Making RPC access logs intelligible

2011-03-29 Thread Philippe Beaudoin
The command pattern included in GWT-Platform gives a different path to each command and yield very readable logs in GAE. The trick is to call setServiceEntryPoint from the client async service implementation. If you want to see how we do it in GWTP check out:

Re: [gwt-contrib] Re: LongLibBase improperly stomps on global 'a' variable. This patch reuses globalTemp (_) instead. (issue1389803)

2011-03-29 Thread דניאל רייס
I did the reimplementation. Being less familiar with the intricacies of JavaScript, it seems likely that I missed an opportunity to preserve the nativeness of the array. I'd be happy to take a look at this after the 2.3 release. On Mon, Mar 28, 2011 at 5:52 PM, Scott Blum sco...@google.com

[gwt-contrib] Comment on ProtocolBuffers in google-web-toolkit

2011-03-29 Thread codesite-noreply
Comment by yegor.jb...@gmail.com: Well detailed and well scoped. I think this spec is great. Except I think protobuf compiler command is protoc, not protocc (one 'c' at the end). For more information: http://code.google.com/p/google-web-toolkit/wiki/ProtocolBuffers --

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

2011-03-29 Thread codesite-noreply
Comment by yegor.jb...@gmail.com: Oh, I forgot. This will probably come with AutoBean, but it might be good to mention how code splitting would work. The framework should guarantee that a single protobuf module is code-splittable, i.e. not compiled in its entirety to all code fragments.

Re: [gwt-contrib] Re: LongLibBase improperly stomps on global 'a' variable. This patch reuses globalTemp (_) instead. (issue1389803)

2011-03-29 Thread Scott Blum
Sounds good. Now that I think about it, it may not make much performance difference if time tends to be dominated by the actual math ops, but I suppose every bit helps? On Tue, Mar 29, 2011 at 10:35 AM, Daniel Rice (דניאל רייס) r...@google.comwrote: I did the reimplementation. Being less

[gwt-contrib] Re: Issue 5129: Accomodate RunAsync in ActivityManager (issue1383802)

2011-03-29 Thread Ray Ryan
It's still unclear to me that your AbstractAsyncActivity actually works. It seems like it will just produce a single split point, as Thomas suggested of my first patch here. Have you seen it make multiple fragments? On Tue, Mar 29, 2011 at 2:36 AM, Antoine DESSAIGNE antoine.dessai...@gmail.com

[gwt-contrib] Adds support for the CSS_ATTRIBUTE_START parse context to HtmlTemplateParser. (issue1392801)

2011-03-29 Thread xtof
Reviewers: jlabanca, pdr, Description: Adds support for the CSS_ATTRIBUTE_START parse context to HtmlTemplateParser. Please review this at http://gwt-code-reviews.appspot.com/1392801/ Affected files: M user/src/com/google/gwt/safehtml/rebind/HtmlTemplateParser.java M

[gwt-contrib] [google-web-toolkit] r9907 committed - Cherry picking r9880 into releases/2.3m1

2011-03-29 Thread codesite-noreply
Revision: 9907 Author: rchan...@google.com Date: Fri Mar 25 07:04:13 2011 Log: Cherry picking r9880 into releases/2.3m1 http://code.google.com/p/google-web-toolkit/source/detail?r=9907 Modified: /releases/2.3/user/src/com/google/gwt/requestfactory/server/LocatorServiceLayer.java

[gwt-contrib] Fixes issue 6189. WebAppCreator was not scanning war/WEB-INF/lib to fill up .classpath (issue1393801)

2011-03-29 Thread rchandia
Reviewers: jlabanca, Description: Fixes issue 6189. WebAppCreator was not scanning war/WEB-INF/lib to fill up .classpath Please review this at http://gwt-code-reviews.appspot.com/1393801/ Affected files: M user/src/com/google/gwt/user/tools/WebAppCreator.java M

[gwt-contrib] Public (issue1394801)

2011-03-29 Thread rchandia
Reviewers: jlabanca, Description: Public Fixes new project template to use 'clean' style. Issue 6208. Please review this at http://gwt-code-reviews.appspot.com/1394801/ Affected files: M

[gwt-contrib] Re: Fixes issue 6189. WebAppCreator was not scanning war/WEB-INF/lib to fill up .classpath (issue1393801)

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

[gwt-contrib] Re: Public (issue1394801)

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

[gwt-contrib] Re: Supress errors when building the Type Oracle. (issue1385810)

2011-03-29 Thread zundel
http://gwt-code-reviews.appspot.com/1385810/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Public (issue1394801)

2011-03-29 Thread rchandia
http://gwt-code-reviews.appspot.com/1394801/diff/1/user/src/com/google/gwt/user/tools/templates/sample/_srcFolder_/_moduleFolder_/_moduleShortName_.gwt.xmlsrc File user/src/com/google/gwt/user/tools/templates/sample/_srcFolder_/_moduleFolder_/_moduleShortName_.gwt.xmlsrc (right):

  1   2   >