Re: Unable to Use GWT Developer Plugin with Firefox 3.6

2010-02-08 Thread makoki
We've got a similar problem under mac. The app that before the plugin
update worked fine now has some problems with DateBox instances, other
browsers plugins seems fine, the application runs fine if compiled and
seen through any browser including FF without plugin, it gets the same
problems if try the compiled app with a FF browser with the plugin.
Oh, we're using FF 3.6 and GWT 2.0

On 3 feb, 14:21, kolstae  wrote:
> I have the exact sameproblem.
>
> On Feb 2, 4:53 pm, Thad  wrote:
>
> > Yes.  This has been observed and commented on.  I've been usingFirefox3.5.7 
> > (on Linux) because of this.
>
> > This morning I was alerted to an update to the GWTplugin, and
> > installed it (v.1.0.7511).  However it still does not work withFirefox3.6.  
> > When I try using it,Firefox3.6just asks for,
> > downloads, and installs thepluginover and over again.
>
> > On Jan 30, 2:39 am, akhil  wrote:
>
> > > Dear Team,
>
> > > i m using GWT 2.0 with MyEclips6.0, i created an sample project with
> > > GWT but when i compile and goto browse (FireFox3.6) that it is asking
> > > that apluginis required , as per give link i download theplugin
> > > also, but it's showing error that it is not compatible withFireFox3.6
>
> > > wating for Help
>
> > > regards
> > > Akhil

-- 
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-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Why is ajax in debug mode so slow?

2010-01-20 Thread makoki
Maybe it's because of real-time java to javascript compilation?

On 20 ene, 02:53, "flyingb...@gmail.com"  wrote:
> In gwt debug mode, loading the data from the ajax serialization is so
> slow.
>
> If i compile it and run it the away loads in about a second but if
> loaded though the debugger plugin it takes a couple minutes for it to
> load the ajax datas.
-- 
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-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Abort a request before being sent in RequestBuilder

2010-01-20 Thread makoki
Anyone knows a way to abort a request from the RequestBuilder, we're
trying to build a request cache on top of the RpcRequestBuilder,  by
overriding the provided do* methods of rpcrequestbuilder we're able to
cache request data and its response but we cannot abort the ongoing
request nor avoid being sent. The only way we found was by throwing an
IllegalStateException that will break the flow of the builder, the
problem is that then all methods must be wrapped with a try catch
controlling this.
Is there  way to abort the current request from requestbuilder?
Any idea?
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 google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: modular GWT application ?

2010-01-18 Thread makoki
Why dont you use iframes? There could be a communication problem
depending on how you want your application components to talk to each
other but think this could work.
Hope it helps

On 17 ene, 19:32, maskac  wrote:
> Hello,
>
> please can anyone help me with designing modular application in gwt?
> I would like to have one page, like smartgwt showcase, but it should
> load pages to tabs dynamicaly from modules (war files with gwt apps,
> specified by extra url). Is it possible to write such app in gwt?
>
> Thanks, and sorry for my bad english.
> Maskac.
-- 
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-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Defining multiple ImageResource in a same interface GWT2 ie8 problem

2010-01-02 Thread makoki
Someone else has found a bug with imageresource and ie8. I was trying
ImageResource in a little widget to be used in a larger project and
found that when defining more than one imageresource in the same
interface ie8 shows all of them. I've don't got any deferred-binding
parameters enabled nor disabled, just default ones.

--

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-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: Google analytics integration

2009-07-30 Thread makoki

Yes, right, we're trying to track dynamic pages. Otherwise, as Juraj
says, we don't have any problem.
On 29 jul, 17:22, Juraj Vitko  wrote:
> I have not implemented Analytics in GWT yet, but it seems that unless
> you want to track dynamic "pages" inside your GWT app, you may just
> include the urchin.js script plus the trigger scriptlet (possibly
> wrapped in try { } catch) in you host HTML page.
>
> On Jul 28, 7:22 pm, makoki  wrote:
>
> > We had recently discovered a bug in our application that came out to
> > be a problem with google analytics integration and liked to know if
> > someone had any idea for a better way to integrate GA with GWT. We've
> > been using GA in out GWT application for quite a time (nearly a year)
> > without a problem but today we discovered that there's a problem with
> > IE6 and GA when we browse the application through localhost or any
> > hostname that hasn't a complete domain (i.e. example.com) so browsing
> > our app throughhttp://localhost/myapporhttp://netbiosname/myapp
> > raises the problem otherwise the integration works seamlesly, if we
> > use the IP or the public domain.
> > We've been tracking down the problem until we found it was the
> > _trackEvent(c,v,d,b) method of GA that was causing the problem (we've
> > found it empirically :P)
> > We've used this explanation to integrate google 
> > analyticshttp://code.google.com/p/gwt-examples/wiki/project_UrchinTracker
>
> > The ga.js script we downloaded directly from google last november more
> > or less and we're currently using GWT 1.7.0 , all is working fine
> > except in the case explained above.
> > Any idea what's happening? Any alternative to integrate GA?
> > Thks
--~--~-~--~~~---~--~~
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 options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: Application Integration

2009-07-29 Thread makoki

What sort of application, which type of integration are you talking
about. I'm sure, although never tried, it's feasible to do it, either
creating an activeX control or similar.

On 29 jul, 12:32, NeMeSiS  wrote:
> Hello all,
>
> I would like to integrate an application into my GWT-Site(similar to
> integrating an applet). Is this possible?
> Another option would be to open an application on the client machine
> (but I don't think this is possible because of browser restictions and
> security reasons) or at least communicate with an application that is
> running on the client machine. The last point would also be perfect.
> But can I do that with GWT? Or is there a library that offers this
> functionality?
>
> Grettings and TIA,
>
> NeMeSiS
--~--~-~--~~~---~--~~
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 options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Google analytics integration

2009-07-28 Thread makoki

We had recently discovered a bug in our application that came out to
be a problem with google analytics integration and liked to know if
someone had any idea for a better way to integrate GA with GWT. We've
been using GA in out GWT application for quite a time (nearly a year)
without a problem but today we discovered that there's a problem with
IE6 and GA when we browse the application through localhost or any
hostname that hasn't a complete domain (i.e. example.com) so browsing
our app through http://localhost/myapp or http://netbiosname/myapp
raises the problem otherwise the integration works seamlesly, if we
use the IP or the public domain.
We've been tracking down the problem until we found it was the
_trackEvent(c,v,d,b) method of GA that was causing the problem (we've
found it empirically :P)
We've used this explanation to integrate google analytics
http://code.google.com/p/gwt-examples/wiki/project_UrchinTracker

The ga.js script we downloaded directly from google last november more
or less and we're currently using GWT 1.7.0 , all is working fine
except in the case explained above.
Any idea what's happening? Any alternative to integrate GA?
Thks
--~--~-~--~~~---~--~~
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 options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: Open a local file with GWT

2009-04-07 Thread makoki

Well, maybe the matter is that Window.open will be caught by some
popup blockers. Why dont you use an Anchor element with a _blank
target, this will open a new window and it's not blocked by browsers.
First do an asynchronous call to retrieve the url and once you have
show and anchor element with a _blank target with your url, the user
just needs to click it to download the file

On 7 abr, 13:04, ffs1985  wrote:
> Hi I'm trying to make a function that let the user download a file
> from my application and see it. I could copy the file from server to a
> local root but when I've tried to open it, does it work on hosted mode
> but in web mode fails always, no matter what browser I try(IE 7,
> Firefox and Chrome).
> My code is the next one:
>
> private void openDocument(String documentName) {
>                 final ManagerExportAsync manejador = 
> ManagerExport.Util.getInstance
> ();
>                 AsyncCallback callback = new AsyncCallback(){
>                         String link;
>                         public void onSuccess(final Object result) {
>                                   link = (String)result;
>                                   Window.open(pdfLink,"_blank","");
>                         }
>                         public void onFailure(Throwable caught){}
>                         };
>
>                 manejador.openDocument("User",userId, documentName,callback);
>         }
>
> The String link result is something like this "file///:C:/test.jpg"
> I don't know what it's wrong. I read somewhere that the problem could
> be that I'm calling the Window.open inside the callback but I really
> don't know what is wrong coul someone give me a hand?
>
> Any suggestions?
> Thanks!
> Federico.
--~--~-~--~~~---~--~~
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 options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: How to prevent the empty Grid display?

2009-04-07 Thread makoki

What about setting it not visible after creation and only show it
after the loading ended?
grd.setVisible(false);
...
// In the callback method return
  onSuccess(){
   grd.setVisible(true);
}

On 7 abr, 13:38, Suren  wrote:
> Hi All,
>
> I am new to GWT. I have a Grid declared like below
>
> Grid grd = new Grid(100,100);
>
> And, I am populating each cell by fetching data from DB. That takes
> some 20 seconds or so.
>
> But before the data populated, I can see the empty grid with 100x100
> empty cells, shown in the browser. how can I prevent this?
>
> I just want to show the Grid only when all the cells are populated
> with Values.
>
> Any help would be appreciated
>
> Thanks
> Suren
--~--~-~--~~~---~--~~
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 options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: Norton 360 slows GWT app?

2008-10-22 Thread makoki

I've posted at my blog the little script we used to solve this problem
for anyone who wants to take a look 
http://webdynamix.blogspot.com/2008/10/gwt-norton-360.html

On 17 oct, 02:19, makoki <[EMAIL PROTECTED]> wrote:
> Thanks for the links martin, we finally solved it, was Norton phishing
> option it seems to take extremlly long time to parse iframe with empty
> src attribute that are built dynamically, this usually is for loading
> dynamically external javascript resources common in ajax sites, i'm
> wrong? after looking at the GWT generated code we saw that this could
> be the issue, after doing some tests we found that actually GWT
> implements dyn. resource loading this way, i'm wrong again? , so we've
> made a little workaround script that just parses the generated code
> and replaces this. Seems to work. :P
> Thks for your responses, if you want we can post the code for the
> script, just a simple bash script replacing the occurrences with a url
> for a blank file.
>
> Ah, we also found out that FormPanel slows down IE7/IE6 with Norton
> anti-phishing option, our solution was to replace form panels with
> simple panel as they weren't doing any real form function, don't know
> if this is a solution for many, but really did the trick for us.
>
> On 16 oct, 09:42, Martin Trummer <[EMAIL PROTECTED]> wrote:
>
> > FYI: I found those 2 interessting 
> > sites:http://mail.google.com/support/bin/answer.py?answer=80446&topic=12780..
>
> > On Oct 15, 11:45 am, Joe Cole <[EMAIL PROTECTED]> wrote:
>
> > > We had huge issues with Norton at one installation.
> > > I think there is a setting to tell it to stop real time scanning of
> > > javascript output - that's probably what's causing the issue. We found
> > > the best explanation of these problems was in gmails troubleshooting,
> > > where it tells you how to disable and add exceptions for most
> > > popupblockers/security suites.
> > > Also, use firebug + ethereal to check it isn't doing things to your
> > > html/js. It added some code to ours that we could use to detect if
> > > norton was installed, and then asked them to add the exceptions.
>
> > > Joe
>
> > > On Oct 15, 3:32 pm, makoki <[EMAIL PROTECTED]> wrote:
>
> > > > Can't find an explanation about it and hope anyone can tell me
> > > > something, using Norton 360 in a Windows Vista environment seems to be
> > > > slowing down GWT app incredibly.
> > > > The app has been tested in different OS and browsers (MAC/WinXP/Vista/
> > > > FF3/Safari/ie6/ie7) but it seems to slow down when Vista/Norton 360 is
> > > > activated.
> > > > Did anyone found the same problem?
> > > > Thx
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: Compilation appears to suspend/hang at "Linking compilation into..."

2008-10-17 Thread makoki

Seems some old annotations spec warning but no error,could be just
long compilation?
 we have a project that takes about 5 minutes.

On 18 oct, 00:07, John <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I have a project that uses GWT 1.5.2 on Mac OSX and have run into a
> problem that I cannot seem to work through.  Up until this morning,
> the project compiled fine, however, now it hangs, or seems to hang at
> the above phase of translating my Java code into GWT Javascript.
>
> Does anyone have any ideas on how to track this down?  I've tried to
> eliminate the possibility of any dependency cycles in the classes,
> which I don't have.
>
> Here is where it stops:
>
> [exec] Scanning for additional dependencies: jar:file:/Users/john/jars/
> esa-gaf.jar!/com/esa/gaf/client/upload/FileUploadPanel.java
>      [exec]    Computing all possible rebind results for
> 'com.esa.gaf.client.upload.FileUploadConstants'
>      [exec]       Rebinding
> com.esa.gaf.client.upload.FileUploadConstants
>      [exec]          Invoking  class='com.google.gwt.i18n.rebind.LocalizableGenerator'/>
>      [exec]             Checking for deprecated metadata
>      [exec]                [WARN] Deprecated metadata found on
> FileUploadConstants.domain;svn use annotations instead
>      [exec]                [WARN] Deprecated metadata found on
> FileUploadConstants.uploadPrompt;svn use annotations instead
>      [exec]                [WARN] Deprecated metadata found on
> FileUploadConstants.fileSeparator;svn use annotations instead
>      [exec]                [WARN] Deprecated metadata found on
> FileUploadConstants.uploadSubmitPrompt;svn use annotations instead
>      [exec]                [WARN] Deprecated metadata found on
> FileUploadConstants.directory;svn use annotations instead
>      [exec]                [WARN] Deprecated metadata found on
> FileUploadConstants.promptStyle;svn use annotations instead
>      [exec] Compilation succeeded
>      [exec] Linking compilation into /Users/john/dev/java/Recruiting/
> www/com.esa.web.recruiting.app.Recruiting
>
> I let the compilation continue, but it never progresses beyond this
> point.
>
> Any suggestions?
>
> Thanks,
> John
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: Norton 360 slows GWT app?

2008-10-16 Thread makoki

Thanks for the links martin, we finally solved it, was Norton phishing
option it seems to take extremlly long time to parse iframe with empty
src attribute that are built dynamically, this usually is for loading
dynamically external javascript resources common in ajax sites, i'm
wrong? after looking at the GWT generated code we saw that this could
be the issue, after doing some tests we found that actually GWT
implements dyn. resource loading this way, i'm wrong again? , so we've
made a little workaround script that just parses the generated code
and replaces this. Seems to work. :P
Thks for your responses, if you want we can post the code for the
script, just a simple bash script replacing the occurrences with a url
for a blank file.

Ah, we also found out that FormPanel slows down IE7/IE6 with Norton
anti-phishing option, our solution was to replace form panels with
simple panel as they weren't doing any real form function, don't know
if this is a solution for many, but really did the trick for us.

On 16 oct, 09:42, Martin Trummer <[EMAIL PROTECTED]> wrote:
> FYI: I found those 2 interessting 
> sites:http://mail.google.com/support/bin/answer.py?answer=80446&topic=12780http://shaunmccarthy.wordpress.com/2007/02/14/symmantec-virus-definit...
>
> On Oct 15, 11:45 am, Joe Cole <[EMAIL PROTECTED]> wrote:
>
> > We had huge issues with Norton at one installation.
> > I think there is a setting to tell it to stop real time scanning of
> > javascript output - that's probably what's causing the issue. We found
> > the best explanation of these problems was in gmails troubleshooting,
> > where it tells you how to disable and add exceptions for most
> > popupblockers/security suites.
> > Also, use firebug + ethereal to check it isn't doing things to your
> > html/js. It added some code to ours that we could use to detect if
> > norton was installed, and then asked them to add the exceptions.
>
> > Joe
>
> > On Oct 15, 3:32 pm, makoki <[EMAIL PROTECTED]> wrote:
>
> > > Can't find an explanation about it and hope anyone can tell me
> > > something, using Norton 360 in a Windows Vista environment seems to be
> > > slowing down GWT app incredibly.
> > > The app has been tested in different OS and browsers (MAC/WinXP/Vista/
> > > FF3/Safari/ie6/ie7) but it seems to slow down when Vista/Norton 360 is
> > > activated.
> > > Did anyone found the same problem?
> > > Thx
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Re: Norton 360 slows GWT app?

2008-10-15 Thread makoki

Thanks joe,
Martin the app wasn't specially slow loading. It slowd down only on
some actions, example: using incubator's gwt datepicker.
Thx for your responses.
Iago

On 15 oct, 11:45, Joe Cole <[EMAIL PROTECTED]> wrote:
> We had huge issues with Norton at one installation.
> I think there is a setting to tell it to stop real time scanning of
> javascript output - that's probably what's causing the issue. We found
> the best explanation of these problems was in gmails troubleshooting,
> where it tells you how to disable and add exceptions for most
> popupblockers/security suites.
> Also, use firebug + ethereal to check it isn't doing things to your
> html/js. It added some code to ours that we could use to detect if
> norton was installed, and then asked them to add the exceptions.
>
> Joe
>
> On Oct 15, 3:32 pm, makoki <[EMAIL PROTECTED]> wrote:
>
> > Can't find an explanation about it and hope anyone can tell me
> > something, using Norton 360 in a Windows Vista environment seems to be
> > slowing down GWT app incredibly.
> > The app has been tested in different OS and browsers (MAC/WinXP/Vista/
> > FF3/Safari/ie6/ie7) but it seems to slow down when Vista/Norton 360 is
> > activated.
> > Did anyone found the same problem?
> > Thx
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



Norton 360 slows GWT app?

2008-10-14 Thread makoki

Can't find an explanation about it and hope anyone can tell me
something, using Norton 360 in a Windows Vista environment seems to be
slowing down GWT app incredibly.
The app has been tested in different OS and browsers (MAC/WinXP/Vista/
FF3/Safari/ie6/ie7) but it seems to slow down when Vista/Norton 360 is
activated.
Did anyone found the same problem?
Thx

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---