yugalatea / gwt-google-apis

Automatically exported from code.google.com/p/gwt-google-apis
0 stars 0 forks source link

ManagedResourceStore does not fire OnProgress events #288

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
(Was issue 3801 in google-web-toolkit)

Reported by: anonymous.coward6

=Found in GWT-Google-APIs GWT 1.2.1=

= Tested on Windows Vista, FF3, Chrome, (hosted and web mode) =

=Description=
Implementing the `ManagedResourceStoreProgressHandler` interface and
registering the handler
(`managedResourceStore.setOnProgressHandler(handler)`) has no effect while
capturing the remote resources. No `ManagedResourceStoreProgressEvent` gets
fired by the `ManagedResourceStore`.

= Bug Fix =
In file
'com.google.gwt.gears.client.localserver.ManagedResourceStore.java', method
'public native void setOnProgressHandler(....)' (line 282)
There's a slight typo. Replace :
{{{
this.progress = function(details) {
}}}
with
{{{
this.onprogress = function(details) {
}}}

Original issue reported on code.google.com by galgwt.reviews@gmail.com on 3 Jul 2009 at 10:34

GoogleCodeExporter commented 9 years ago
Committed as r1519

Original comment by galgwt.reviews@gmail.com on 3 Jul 2009 at 10:42

GoogleCodeExporter commented 9 years ago

Original comment by zundel@google.com on 21 Dec 2009 at 1:32

GoogleCodeExporter commented 9 years ago

Original comment by piotr.sw...@gmail.com on 14 May 2010 at 9:35