Re: New version not being detected by browser

2012-07-30 Thread Johannes Barop
Hello, you have to configure your server to tell the clients to never cache .nocache.html files. See: https://developers.google.com/web-toolkit/doc/latest/FAQ_DebuggingAndCompiling#What%27s_with_all_the_cache/nocache_stuff_and_weird_filenames J. Am 29.07.2012 um 04:55 schrieb ERS: Hello

Delegate an Editor's edit() save() functionality via Activities Places' Presenter to an Activity class?

2012-07-30 Thread Alexander Orlov
I have an architectural question. I've introduced EntityWorkflowhttps://developers.google.com/web-toolkit/doc/latest/DevGuideUiEditors#Quickstart to my Activities Placeshttps://developers.google.com/web-toolkit/doc/latest/DevGuideMvpActivitiesAndPlacesenabled app. In GWT's *Activities

Re: BreadCrumb implemention in GWT2.4

2012-07-30 Thread Ümit Seren
It really depends what kind of breadcrumb support you want to have. The widget itself to display breadcrumbs is probably quite simple (List of Hyperlink widgets separated by ). However the harder part is to populate the breadcrumb. Basically you distinguish between breadcrumbs which show to

Re: ListDataProvider vs AsyncDataProvider

2012-07-30 Thread Ümit Seren
That's not correct. You can still have a ListDataProvider that fetches all 8000 rows from the server but if you use a Pager and set it to page size 10 it will only render 10 items at a time. But I would not recommend it as you experienced yourself that parsing 10,000 records takes around 2

rpc error

2012-07-30 Thread Rafael Campaña
Hello GWT Community, I have tested gwt 2.5 with my gwt 2.4 project and I get rpc errors on every rpc call. A Hello world project work fine but I can't to upgrade my gwt 2.4 project. I would like to prove the performance improvements!! I have updated eclipse gwt plugings and I have replaced

Re: RequestFactory VS Cloud Endpoints (App Engines Java Rest API)

2012-07-30 Thread YatiRaj B
Hello Kevin, Sorry for late reply! Finally I got to test your way of doing it. It worked but only partially! :) Here is the info: 1. I converted the POJO Square class into a JDO class and created the endpoint as explained by you. It all went well. 2. I tried with both the browser and

Re: Digest for google-web-toolkit@googlegroups.com - 24 Messages in 16 Topics

2012-07-30 Thread nesrine doghri
Help please ! -- 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 more

Re: GWT 2.4 istantiate Activity

2012-07-30 Thread bond
Hi, anyone has some ideas about this problem? It is strange that no one has this need! Thanks Il giorno sabato 14 luglio 2012 10:44:14 UTC+2, bond ha scritto: Any ideas? Thanks! Il giorno giovedì 12 luglio 2012 14:53:09 UTC+2, bond ha scritto: Hi guys, I've a design question about mvp

GWT SimpleRemoteLogHandler

2012-07-30 Thread dhoffer
I'm assuming that SimpleRemoteLogHandler will send logging to the server based on the client's log configuration. Is there a way to make this smarter...so that it uses the server's log configuration to know what to log and send? The most important aspect of this is to allow log level changes

Re: GWT 2.4 istantiate Activity

2012-07-30 Thread Juan Pablo Gardella
Use event bus to communicate the view with the activity. 2012/7/30 bond daniele.re...@gmail.com Hi, anyone has some ideas about this problem? It is strange that no one has this need! Thanks Il giorno sabato 14 luglio 2012 10:44:14 UTC+2, bond ha scritto: Any ideas? Thanks! Il giorno

AsyncDataProvider and CellTree

2012-07-30 Thread Thad
I have a CellTree in which I want to represent something similar to a directory listing (actually represented in database records): public class DirectoryObject implements Serializable { public String name; public String type; // 'file' or 'folder' public int group; ... } This

Accumulate EntityProxy properties from subsequent RF calls

2012-07-30 Thread bloo
Is there a way to accumulate the properties of an EntityProxy as I call RequestContext.find() with different propertyRefs, so that I'm building a fuller client-side EntityProxy that I can push into an Editor? I have a display-only Editor that displays values as they're requested from the

Re: GWT SimpleRemoteLogHandler

2012-07-30 Thread Jens
If you have an app that has logging enabled then you can override the log level via GET parameter, e.g. logLevel=INFO. As far as I know you can't tell the client app to only log things in com.example.app.client.x.y.z. So its all or nothing. An additional GET parameter to enable specific loggers

Re: Accumulate EntityProxy properties from subsequent RF calls

2012-07-30 Thread Jens
I think you want RequestFactoryEditorDriver.getPaths() and set the String array into RequestFactory.find(id).with(paths) or RequestFactory.yourRequestContext().yourRequest().with(paths) -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Delegate an Editor's edit() save() functionality via Activities Places' Presenter to an Activity class?

2012-07-30 Thread Thomas Broyer
I generally expose the EditorDriver to the presenter using a createdDriver method on the view. The presenter calls the edit, flush and hasErrors, not the view. Also note this has nothing to do with Activities, it's MVP. -- You received this message because you are subscribed to the Google

Re: DevMode not working in Chrome after update

2012-07-30 Thread Max Völkel
Chrome Canary Version 22.0.1221.0 canary on OS X Lion has the same problem. Manual install via Drop Here on Extension pane, but plugin wont start. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

This is not a GUI class and can't be edited graphically.

2012-07-30 Thread Charlie
Recently re-installed Eclipse Indigo 3.7 and all of thw GWT stuff. Now GWT Designer can't seem to load projects I was working on before; I get the error in my topic title for the composite file and Unknown GUI toolkit in the first file that was created. I don't mind copying the code and pasting

Re: GWT 1.5 - OSGi - Invalid type signature

2012-07-30 Thread beyondwcm
thanks, i fixed my problem. On Wednesday, July 2, 2008 7:50:11 AM UTC+8, Tom Davies wrote: I had a similar problem using 1.5RC1 and felix 1.0.4. My problem was that the OSGi bundle which contained my concrete RemoteServiceServlet was not able to see the custom serialiser for ArrayList, as

Issue with ScrollTable

2012-07-30 Thread PC
ScrollTableIssue : Header and datatables of a scrolltable are misaligned when using horizontal scroll. Test case: I have a scrollTable which is populated dynamically. (The rows and columns are calculated on fly and data is populated). My ScrollTable supports both horizontal and vertical

Re: New version not being detected by browser

2012-07-30 Thread Ernani Sottomaior
Thanks J. but I remember reading that gwt apps are meant to be cached... (early in version 1.3 - 1.4) My app now compiles as 780k .cache.html files (even using deferred-binding). This approach would download 780k for each tab opened in the browser... is this correct? I thought these generated

Re: GWT

2012-07-30 Thread Ernani Sottomaior
You can use gwt history manager... *add a listener:* History.addValueChangeHandler(new ValueChangeHandlerString() { public void onValueChange(ValueChangeEventString event) { String section = History.getToken().trim(); ... place new panel, or whatever

Re: New version not being detected by browser

2012-07-30 Thread Ernani Sottomaior
Err... ignore that. I was seing .nocache.html instead of .cache.html. =P But, anyway, according to that doc, it should work... *To help prevent caching, the code in gwt.js actually appends an HTTP GET parameter on the end of file name containing a unique timestamp. The browser interprets this as

Re: New version not being detected by browser

2012-07-30 Thread Ernani Sottomaior
The solution... http://seewah.blogspot.com.br/2009/02/gwt-tips-2-nocachejs-getting-cached-in.html On Tue, Jul 31, 2012 at 1:07 AM, Ernani Sottomaior ernanisottoma...@gmail.com wrote: Err... ignore that. I was seing .nocache.html instead of .cache.html. =P But, anyway, according to that

[gwt-contrib] Re: fixes ISSUE 7479 (typo in javadoc) (issue1770803)

2012-07-30 Thread rdayal
On 2012/07/04 21:47:12, kurka.daniel wrote: Simply typo in javadoc needs review LGTM. http://gwt-code-reviews.appspot.com/1770803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Added support for group sequences - including Default group overrides. (issue1798803)

2012-07-30 Thread nchalko
Partial review. More to follow http://gwt-code-reviews.appspot.com/1798803/diff/1/user/src/com/google/gwt/validation/client/Group.java File user/src/com/google/gwt/validation/client/Group.java (right):

[gwt-contrib] Increase a timeout in JsonpRequestSuite to see if it fixes a flaky test. (issue1798804)

2012-07-30 Thread skybrian
Reviewers: cromwellian, Description: Increase a timeout in JsonpRequestSuite to see if it fixes a flaky test. (It seems to help when running the tests by hand, but it's hard to tell.) Please review this at http://gwt-code-reviews.appspot.com/1798804/ Affected files: M

[gwt-contrib] Re: Make ScriptInjectorTest less flaky by referencing locally-served test data. (issue1800803)

2012-07-30 Thread skybrian
http://gwt-code-reviews.appspot.com/1800803/diff/1/user/test/com/google/gwt/core/public/script_injector_test_absolute.js File user/test/com/google/gwt/core/public/script_injector_test_absolute.js (right):