Re: Problem with AjaxLoader and AJAX Feed API

2010-01-15 Thread ale
I try and it works! thanks a lot, again. Regards On Jan 14, 9:47 am, ale aleee...@gmail.com wrote: Ok, I will try (now I'm on an other pc, far from my project...) It 'obvious that I can not use javascript from GWT :-), do yuo know where can I  find a tutorial, or some doc? thanks, thanks,

Re: GWT maps: multiple maps InfoWindow problem

2010-01-15 Thread morfeusys
I found that this problem occurs when I have two entry separate points with map component in each of them. If I use only one entry point with two component - everything works fine. But there is difficult to use one common entry point in my project. The code example below: public class Test

RE: Maven users survey

2010-01-15 Thread Feldman, Nir
Some more stuff: 1. Maven standard is using the src/test/java folder for test cases. Mvn eclipse:eclipse then generates this folder as a source folder. Since the GWTTestCase is not part of the user jar and is part of the dev jar when running the application from eclipse we always get the

Using Firefox on Windows in Hosted Mode

2010-01-15 Thread masterGaurav
Hi, I was just going through the thread: http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/45373089230f2bea and figured out the OOPHM branch. Wondering if somebody has already got Fx working on Windows in hosted mode. If not, any direct pointers to the starting point would

Re: Problem running application GWT 2.0 with external server and DevMode, unable to find module file

2010-01-15 Thread mlopez
Hello Chris, Firstly I start the Tomcat web server at localhost:8080, my launch configuration is all that I write in the first post: Run - Run configurations - Java Application: in the Main tab as Main class I'm using: com.google.gwt.dev.DevMode, and as Project Iam using my GWT project: myapp.

Marketized Strings

2010-01-15 Thread Nathan Wells
Is there a way to generate constants based on something other than locale? For instance, we have a webapp that manages Widgets. One of our customers calls it a FooWidget while another calls it a BarWidget. Therefore, we would like to extract it into something like a subinterface of Constants, but

RPC cannot use my custom object

2010-01-15 Thread loucat
Hi everybody, I'm submitting a form through RPC, I managed to communicate with a single string but now I have to pass the entire object User (containing name, surname, address and so on). I'm using a package model which is inside the source path at the same level as client and server package, so

Re: MVP, GIN, UiBinder

2010-01-15 Thread Marko Vuksanovic
Hi, I have been working on implementing Event Bus and MVP pattern in a GWT 1.7 project. Recently I have also implemented the same patterns using GWT 2.0. You can checkout the following project: http://code.google.com/p/gwt-event-bus-research/ (gwt 2.0 example is found in _current_ folder). Hope

Re: Problem running application GWT 2.0 with GWT Eclipse plugin

2010-01-15 Thread mlopez
Hello Jason, I have tried to delete my old launch configuration and then Run As - Web application for my GWT project but the result is the same, in the moment that the application calls to any RPC service throws the error: Cannot find resource 'com/xxx/architecture/commons/gwt/web/client/yyy/

Re: UiBinder and FlexTable or Grid

2010-01-15 Thread aliman
I have another use case here, quite simple - I want to populate the contents of a flextable (or grid) dynamically, but I want a fixed header row. I also want to i18nise the contents of the header row. It would be convenient if I could partially populate the content of a flextable in the uibinder

Re: Maven users survey

2010-01-15 Thread Raphael André Bauer
On Wed, Jan 13, 2010 at 5:35 PM, Keith Platfoot kplatf...@google.com wrote: Hi folks, For the next release of the Google Plugin for Eclipse, we're planning on making a few tweaks to make life easier for Maven users. That's right: we've seen the stars on the issue tracker, and have decided

Re: RPC cannot use my custom object

2010-01-15 Thread loucat
I tried to put my custom object User inside the client package but nothing changed, I think the previous package was inherited well: tree: |-com.example.project |-com.example.project.client |-com.example.project.model |-User.java |-com.example.project.server and my project.gwt.xml has:

Re: Maven users survey

2010-01-15 Thread wytten
Hi Keith, We are in the process of upgrading to GWT 2.0.0, so what our best practices are is an interesting question right now, but here goes: 1. Our main pain point is the /war conundrum you spoke of. - We configure the maven-war-plugin with webappDirectory${basedir}/ war/webappDirectory (new

Re: Deploying GWT 2.0 client app ?

2010-01-15 Thread Kryo`
Hi Chris ! what happens if you start the development server as usual (Run As- Web Application), and then instead of http://localhost:/Login.html?gwt.codesvr=192.168.1.22:9997 you go to http://localhost:/Login.html in your browser? I have the same error message :/ If this doesn't work,

Re: RPC cannot use my custom object

2010-01-15 Thread Alex
What do you see on the server? So on the server you should be able to access user.getName(), what value does this have? Then you return the object to the client so the method is something like? public User prenota(User user) { System.out.println(User - + user.getName()); user.setName(Made

Re: What causes com.google.gwt.core.client.JavaScriptException, and how to trace it?

2010-01-15 Thread LEDUQUE Mickaël
Y(ou'll probably only have this kind of exception in javascript compiled app, so you won't be able to use hosted/devmode to inspect it. I'd probably compile the application with style=DETAILED and use tools like firebug (Firefox) or webkit developer tools (chrome/safari) to debug that. Of course,

Re: UiBinder with custom Messages instance

2010-01-15 Thread tomsn
Ok, excuse the silly question. I did not read the manual carefully enough; Of course, I simply can pass an instance of a MyMessages object, using the ui:with tag. The documentation is great! Thanks.. On 14 Jan., 15:40, tomsn t...@gmx.de wrote: Hallo, is it possbile to use an own instance of

Re: Mouse events in FocusPanel

2010-01-15 Thread Viliam Durina
It's by definition of the mouse over state: if the element is covered by some other element, the mouse is over it. In your case, if the mouse is over the button, it is not over the FocusPanel. The same holds for SWT: I made a function, which only hid the button, if the mouse was outside of the

Re: GWT 2.0 runAsync code works fine in development mode but fails in normal mode

2010-01-15 Thread Matt Moriarity
I'm not sure about this, but I would guess that GWT doesn't actually do any code-splitting when in development mode because there isn't much point. It's really only useful when you compile. On Jan 14, 12:07 pm, mably fm2...@mably.com wrote: Oops, sorry...  It's asynchronous, so my list object is

Panel with mouse events

2010-01-15 Thread Viliam Durina
I need a Panel, on which I need to add mouse events. The only match seems to be the FocusPanel, which has a focus features which I don't need. But all other panels, surprisingly for me, don't support mouse events. Is there any specific reason for this or is it just an incomplete API? Thanks,

Re: Multiple RPC requests, onSuccess() order/concurrency

2010-01-15 Thread Viliam Durina
I thought so :). There's no concurrency in Javascript. There's no light without a bulb. Viliam On 13. Jan, 14:39 h., MikeN m...@normi.net wrote: Ok, ignore this... bug was on my end. Apparently someone decided it was wise to use an instance variable in the service class to build the

Re: GWT Incubator Status Update and Schedule

2010-01-15 Thread Nathan Wells
John, Is there a way we can get visibility into everything the GWTers are planning for each release (i.e. the roadmap)? If you guys take the position that you don't want to set expectations that won't be met... can you send me a copy personally? I promise not to build up my expectations :) On

Re: Mouse events in FocusPanel

2010-01-15 Thread Yossi
Hi, It was my bug. I put an item with absolute location on top of the focus panel. On Jan 14, 5:59 pm, Yossi ykah...@gmail.com wrote: I think that this is relevant for any widget that has mouse events and also can contain other widgets. I use FocusPanel and inside the focus panel I have a

Re: How to find out the Attributes for an UI Element

2010-01-15 Thread Thomas Broyer
On Jan 14, 9:56 pm, Ewald Pankratz ewald.pankr...@gmail.com wrote: How can I find out which attribute are available for an UI-Element. e.g. I want to find out what else I can set for a FlexTable. I work with eclipse. g:center       g:ScrollPanel         g:FlexTable ui:field='table'

Re: RPC cannot use my custom object

2010-01-15 Thread loucat
The server method didn't do anything but returning user, I just wanted to understand if something was working and now I think I understood the problem but I'm not sure: I moved the part of assigning textfield to my User field (user.setName (name.getText()); ) inside the method onClick() of the

Re: GWT Incubator Status Update and Schedule

2010-01-15 Thread Joel Webber
To be clear, the inclusion of more core widgets and libraries won't impose any size overhead on projects that don't use them. If you *do* use them, you can always use code-splitting to divide your app into logical components that are demand-loaded. On Wed, Jan 13, 2010 at 10:25 AM, Deanna Bonds

Re: Use of Widget.delegateEvent Method

2010-01-15 Thread Thomas Broyer
On Jan 14, 8:53 pm, Craig cr...@mahytech.com wrote: Hi, We are upgrading our code from GWT 1.4 to 1.7.1, and I have hit a stumbling block. We have created a custom widget based on the Composite class and have a RichTextArea embedded within the custom widget class. When a user of the custom

focus event not bubble up

2010-01-15 Thread Ed
Why does the foucs/blur event not bubble up? All events like mouse/click/etc... are bubbled up, but not the focus/ blur, why is this? Ed -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Unable to post :(

2010-01-15 Thread Loupassakis Christos
Hello, Is that normal I can't post anything on the GWT discussion group ? I'm new and since 2 days I have this every time I try to post : We were unable to post your message If you believe this is an error, please contact Google

Re: Maven users survey

2010-01-15 Thread drone
Hello, I know, this is GWT thread, but as I understand you are on Google Plugin for Eclipse team, so I assume, I can bother you regarding both GWT and GAE. The problem with gwt-maven-plugin is that when running GAE project locally, as described by other people above, GAE is not initialized and

ClientBundle and clear.cache.gif

2010-01-15 Thread Kelly
I am using a ClientBundle of images in my project and I am getting a ton of requests to the server for clear.cache.gif. The ClientBundle documentation does not reference clear.cache.gif and I tried the suggestion in the old ImageBundle documentation of adding an Expires header with a future time

GWT + Maven + JBOSS Issue

2010-01-15 Thread cupakob
hi all, i have a project, which use GWT for the frontend. I can compile and run the module with maven (mvn compile war:exploded gwt:run) and it works fine. After that i package (mvn war:exploded package) the app as war and deploy it into jboss. When i call

Re: GWT 2.0 + JBoss

2010-01-15 Thread jayanth
Thanks Szemere .. you really saved my day. I was scratching my head trying to figure out what could be the cause and it turned out to be an older version of gwt-servlet.jar as you've indicated. On Jan 1, 9:09 am, Szemere szemereszem...@googlemail.com wrote: I've found this can be caused by an

Apply css to dockLayoutPanel

2010-01-15 Thread netxplorer
Hello, I'm actually trying to set a style to the dockLayoutPanel. When I set it, everything's ok (with firebug I can see the new style class added), but when I try to set some properties in the css file it won't work. I can use css with other elements, like my tabLayoutPanel (in this case I have

DevMode 64-bit Linux InteliiJ IDEA

2010-01-15 Thread Hamlet D'Arcy
GWT Development Mode is not running for me using 64-bit Linux and IntellJ IDEA. I see there are some other threads and bug reports already for this issue, however they are either marked stale or predate the 2.0 release. The directions attached all include instructions that are no longer relevant

Adding jars to classpath

2010-01-15 Thread Ryan Kumsher
In Eclipse, I'm adding jars to the Java Build Path. My imports and instantiations of the objects in the jars work fine with no errors (not red underlined), but when i try to run the application, i get the error java.lang.NoClassDefFoundError for all jar'd objects I try to create. The servlet

Re: Maven users survey

2010-01-15 Thread drone
Hello, I know, this is GWT thread, but as I understand you are on Google Plugin for Eclipse team, so I assume, I can bother you regarding both GWT and GAE. The problem with gwt-maven-plugin is that when running GAE project locally, as described by other people above, GAE is not initialized and

Launching DevMode from ANT and debug in Eclipse?

2010-01-15 Thread ABB
For some reason, I am not able to debug a specific GWT project in Eclipse using Debug as... Web Application. So I'm now trying to use an ANT target to launch DevMode in order to be able to debug my project in eclipse. Is that possible to use ANT or Debug as... Web Application is the only way

Re: Problem: certain types of J2EE authentication with GWT 2.0 and Eclipse 3.5 plugin no longer work

2010-01-15 Thread Jon
I had a very similar problem, I ended up fixing it by setting an absolute path to the realm.properties file. ?xml version=1.0? !DOCTYPE Configure PUBLIC -//Mort Bay Consulting//DTD Configure//EN http://jetty.mortbay.org/configure.dtd; Configure class=org.mortbay.jetty.webapp.WebAppContext Get

Cross window calls?

2010-01-15 Thread Djabi
Hi There, is there a way to do calls from one GWT window to another from same origin. For example I want to open new window from running GWT application and be able to send back some data (or call something) in the original window from the window I just opened. The XSS should not be an issue here

Re: Gwt module may need to be (re)compiled

2010-01-15 Thread Maciej Rygielski
Hi! I had this problem, when I used internationalization (i18n) and missed to define meta name=gwt:property content=locale=pl/ After adding this line things works as they should :) -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to

Re: Mac, GWT Hosted Mode does not work after switching to gwt 2.0 and back to 1.7.1

2010-01-15 Thread Bruno Unna
It worked like a charm. Thank you very much. The problem at stake is a cryptic one, though. How come the classloader can make this kind of mistake? Or who is to blame? Regards. On Dec 14 2009, 8:52 pm, ciyer cramakrish...@gmail.com wrote: I spent a few hours chasing down the Invalid memory

java.lang.VerifyError in generated code when using GWTTestCase

2010-01-15 Thread Tim Pesce
I'm in the process of trying to narrow this down and eliminate any dumb mistakes on my part, but it's got me a bit baffled. In my reproducer I've got a trivial GWTTestCase (one test method w/ assertTrue(true)) that consistently causes this error: [INFO] [ERROR] Failed to create an instance of

Re: Can anyone help me add jars

2010-01-15 Thread Ryan Kumsher
I'm having the same problem your describing. Have you found the solution? On Dec 12 2009, 11:37 am, darkling darkling...@aol.com wrote: I'm just learning GWT right now, I'm actually using smartGWT and building inside Eclipse using eclipse's GWT plugin. I'm trying to build a simple application

Help with the toolkit - עזרה עם הGWT

2010-01-15 Thread ido
hey, i'm trying to use the GWT, but when i'm running the example application (the one that the webAppCreator creates) i keep on getting: Connection received from server name:several ports [ERROR] Unexpected message type INVOKE; expecting CheckVersions and the web page can't be loaded. what

Re: Where is the Chrome GWT Extension?

2010-01-15 Thread netxplorer
Hello, you must install dev version of Chrome, which supports extensions : http://www.google.com/chrome/eula.html?extra=devchannel About Firefox, it works fine for me. Do you have the latest version ? -- You received this message because you are subscribed to the Google Groups Google Web

Remote Debugging via Ant

2010-01-15 Thread firefighter1973
Hi folks, I want to use the GWT-Toolkit in a project. My IDE is Eclipse 3.4. I have to start the app via an ant-script. I tried to start debugging, but that didn't work. I can't find any links in the web for remote- debugging on the jetty using eclipse, gwt and ant. cite of script target

Re: Launching DevMode from ANT and debug in Eclipse?

2010-01-15 Thread Miguel Méndez
You should be able to use eclipse to debug you web application -- we do it all the time. Are you not hitting break points or does it just not launch? On Thu, Jan 14, 2010 at 2:47 PM, ABB watersel...@gmail.com wrote: For some reason, I am not able to debug a specific GWT project in Eclipse

Re: Adding jars to classpath

2010-01-15 Thread Alexander
Seems like your webserver hasn't these libs in classpath. 2010/1/14 Ryan Kumsher rkums...@gmail.com In Eclipse, I'm adding jars to the Java Build Path. My imports and instantiations of the objects in the jars work fine with no errors (not red underlined), but when i try to run the

Re: Launching DevMode from ANT and debug in Eclipse?

2010-01-15 Thread Alexander
Yeah, dont be shy. Tell us why you cant debug from Eclipse. 2010/1/15 Miguel Méndez mmen...@google.com You should be able to use eclipse to debug you web application -- we do it all the time. Are you not hitting break points or does it just not launch? On Thu, Jan 14, 2010 at 2:47 PM, ABB

Re: Unable to post :(

2010-01-15 Thread Alexander
Have you tried to contact Google Support? 2010/1/15 Loupassakis Christos loupasch...@gmail.com Hello, Is that normal I can't post anything on the GWT discussion group ? I'm new and since 2 days I have this every time I try to post : We were unable to post your message If you believe

Re: Mac, GWT Hosted Mode does not work after switching to gwt 2.0 and back to 1.7.1

2010-01-15 Thread Alexander
Classloaders in webserver works different way. Maybe you could dig something up there. 2010/1/15 Bruno Unna bruno.u...@gmail.com It worked like a charm. Thank you very much. The problem at stake is a cryptic one, though. How come the classloader can make this kind of mistake? Or who is to

Re: GWT + Maven + JBOSS Issue

2010-01-15 Thread Alexander
This parameter is only need when you run DevMode, right? 2010/1/15 cupakob sira...@gmail.com hi all, i have a project, which use GWT for the frontend. I can compile and run the module with maven (mvn compile war:exploded gwt:run) and it works fine. After that i package (mvn war:exploded

Re: Injecting Spring beans into GWT services

2010-01-15 Thread Alexander
Try to use http://gwt-widget.sourceforge.net/, actually GWT-SL. It will solve your problem like a charm. Works fine for me. Or if you need only DI from Spring think about Guice for server code and Gin for client code. * * 2010/1/14 marko marko.aspl...@gmail.com Hi, I'd like to be able to

Re: Proper use of GWT

2010-01-15 Thread Alexander
GWT is just a toolkit. You can do whatever you want. Big applications without good arch seems always be a developers nightmare eventually. So I think problem anywhere but not in the toolkit. P.S. It is really hard to find your questions in text. Maybe its a good idea to list them? 2010/1/13 Hugh

Re: Unable to post :(

2010-01-15 Thread mariyan nenchev
All new member posts are moderated before they are posted in the group On Fri, Jan 15, 2010 at 5:59 PM, Alexander the.malk...@gmail.com wrote: Have you tried to contact Google Support? 2010/1/15 Loupassakis Christos loupasch...@gmail.com Hello, Is that normal I can't post anything on the

Can I developing Gwt 2.0 apps on linux using firefox ?

2010-01-15 Thread R.Domingo
Hello, I'm using gwt 1.5.x for some time now in combination with the hosted browser. But after switching to gwt 2.0 the hosted browser is no longer used AND I can't get the firefox gwt plugin working. Can anyone please confirm this should work ? Or explain how I can test/develop my apps now the

Re: Can I developing Gwt 2.0 apps on linux using firefox ?

2010-01-15 Thread Qian Qiao
On Sat, Jan 16, 2010 at 00:47, R.Domingo raym...@domingo.nl wrote: Hello, I'm using gwt 1.5.x for some time now in combination with the hosted browser. But after switching to gwt 2.0 the hosted browser is no longer used AND I can't get the firefox gwt plugin working. Can anyone please

Re: Can I developing Gwt 2.0 apps on linux using firefox ?

2010-01-15 Thread Alexander
Debug in real browser instead of hosted browser! Read http://code.google.com/webtoolkit/doc/latest/DevGuideCompilingAndDebugging.html 2010/1/15 R.Domingo raym...@domingo.nl Hello, I'm using gwt 1.5.x for some time now in combination with the hosted browser. But after switching to gwt 2.0

Re: Proper use of GWT

2010-01-15 Thread Anoop John
GWT is very helpfull to me. please go to the link http://chemparathy.com/ . This one i developed myself. On Jan 15, 9:15 pm, Alexander the.malk...@gmail.com wrote: GWT is just a toolkit. You can do whatever you want. Big applications without good arch seems always be a developers nightmare

Re: Proper use of GWT

2010-01-15 Thread Chris Lercher
Hi, I think I might use GWT for pretty much any AJAX website, if I can. There are so many reasons why even non-application-style sites can benefit from it, think - Code splitting - ClientBundles - Improved internationalization - JS minification - Cross-browser-quirks mitigation - Refactoring,

Re: Proper use of GWT

2010-01-15 Thread Alexander
You know, not really great example :) 2010/1/15 Anoop John anoopjoh...@gmail.com GWT is very helpfull to me. please go to the link http://chemparathy.com/ . This one i developed myself. On Jan 15, 9:15 pm, Alexander the.malk...@gmail.com wrote: GWT is just a toolkit. You can do whatever

Re: Where is the Chrome GWT Extension?

2010-01-15 Thread Joe
Thanks, but I am currently running Chrome 4.0.295.0 which supports extensions (e.g., SpeedTracer runs, no problem). When I've clicked on the Dev Channel link, it seems to install, but does not change my version number. On Jan 14, 6:24 pm, netxplorer loupasch...@gmail.com wrote: Hello, you must

Re: Adding jars to classpath

2010-01-15 Thread simonob007
Hi Ryan Have you put your jars in the WEB-INF lib folder? Simon On Jan 14, 5:36 pm, Ryan Kumsher rkums...@gmail.com wrote: In Eclipse, I'm adding jars to the Java Build Path.  My imports and instantiations of the objects in the jars work fine with no errors (not red underlined), but when i

Model-View-Presenter Architecture Diagram (w/ and w/o UIBinder)

2010-01-15 Thread Niel
I took a stab at putting together some MVP architecture diagrams. One diagram is pure MVP and the other is MVP + UIBinder. I figured it may be helpful to others, however please note that that it may contain errors. http//bit.ly/8cp2ga -- You received this message because you are subscribed to

Re: Where is the Chrome GWT Extension?

2010-01-15 Thread Joe
I have now upgraded to Firefox 3.5.7 and the same thing happens - when I click Install the Plugin Finder Service says No suitable plugins were found. Searching Mozilla extensions for GWT or Google Web Toolkit yields little. Could someone perhaps post a URL to the FF plugin? Thanks, Joe On Jan

Re: Where to get started with GWT and Federated login? (php only)

2010-01-15 Thread darkflame
should this be what I'm using; http://code.google.com/p/gdata-samples/source/browse/#svn/trunk/hybrid ? On Jan 12, 7:04 pm, darkflame darkfl...@gmail.com wrote: I'm interested in adapting my site to work with a federated login system. (you can see a beta of my site here to get the general

Re: Problems with SSL and hosted mode

2010-01-15 Thread Rob Tanner
I'm running hosted mode from within Eclipse and so I don't even know where to put the -startupURL parameter. And when I think about it, I need a certificate installed in the server to use SSL and so probably using the Tomcat I use for other development work is probably the better choice.

Re: Proper use of GWT

2010-01-15 Thread Alex
The gui for Lombardi Blueprint is built with GWT. It's a pretty large app, several hundred thousand lines of java code compiled with the GWT compiler, and we couldn't have built it without GWT (we tried dojo initially, nasty, nasty stuff). The new ui for google adwords management is also a GWT app

Fun with log4j logging

2010-01-15 Thread Rob Tanner
I've used log4j with regular servlets it seems like forever, but when I set it up the same way as usual for a servlet used in async communication in GWT, logging doesn't happen. Here's some code: HttpSession session = request.getSession(); String log4jProperties =

Re: plugin for firefox

2010-01-15 Thread R.Domingo
Thank you for the tip !! I also needed to push the button a few times, then an allow... button appeared and I was able to push this one also then the install started... My config: Ubuntu 9.04 64 Firefox 3.0.17 On Jan 14, 7:38 pm, Ewald Pankratz ewald.pankr...@gmail.com wrote: I changed the

Re: Launching DevMode from ANT and debug in Eclipse?

2010-01-15 Thread ABB
OK it now works for one of these projects. When i Debug as... Web Application i see logs in the console and debugging works like a charm. Logs from working project: ... Found new resource: com/google/gwt/core/client/GWTBridge.java Found new resource: com/google/gwt/lang/

Re: Launching DevMode from ANT and debug in Eclipse?

2010-01-15 Thread ABB
OK it now works for one of these projects. When i Debug as... Web Application i see logs in the console and debugging works like a charm. Logs from the working project: ... Found new resource: com/google/gwt/core/client/GWTBridge.java Found new resource:

Re: Problem running application GWT 2.0 with GWT Eclipse plugin

2010-01-15 Thread Sorinel C
1. Can you check to clean up your environment like is explained here? http://ui-programming.blogspot.com/2009/12/update-your-application-to-gwt-20.html 2. If you still have problems after step 1, then check out the java class that you get error for (maybe you use some external unsupported classes

Re: plugin for firefox

2010-01-15 Thread Sorinel C
Can you set your dev. environment like is said here? http://ui-programming.blogspot.com/2009/12/update-your-application-to-gwt-20.html You'll find out why you have to put that gwt.codesvr parameter and others small tricks. Cheers! -- You received this message because you are subscribed to the

Re: My IE plugin doesn't work...

2010-01-15 Thread Sorinel C
You can download the plugin directly from the URL ... check this article: http://ui-programming.blogspot.com/2009/12/update-your-application-to-gwt-20.html So, you download it, install it, and run it. It should be easy :) Cheers! -- You received this message because you are subscribed to the

Re: Differences Hosted Mode, Web Mode

2010-01-15 Thread Sorinel C
Beside the previous answer from Alex, there is another explanation: - in web mode the RPC communication between the server and client is optimized (gzip-ed), but in hosted mode this isn't true, so in this slow case, you serialize plain data back and forth, which I believe is big for 4000+ nodes.

Re: GWT 2.0 runAsync code works fine in development mode but fails in normal mode

2010-01-15 Thread mably
Ok, you're certainly right, thanx for the answer. On 15 jan, 15:45, Matt Moriarity matt.moriar...@gmail.com wrote: I'm not sure about this, but I would guess that GWT doesn't actually do any code-splitting when in development mode because there isn't much point. It's really only useful when

Re: Multiple Methods Within One RPC Service?

2010-01-15 Thread Sorinel C
The thumb rule is use as few GWT services as possible ... because it takes more than 1+ second to initialize each service; so many you have, more time you waste at starting up the application. If you have fancy crazy application with timeouts and stuff, then you're smart enough to figure out

Re: RPC cannot use my custom object

2010-01-15 Thread Alex
You don't have to wait for some particular event before you can retrieve the contents of the TextBox. However, you do have to decide when you want to call the server. Generally you need to pick some point at which the user has made a meaningful change. For example when they click a button but you

PNG Transparency in Internet Explorer

2010-01-15 Thread Francisco Bischoff
Hello, Does anyone got to solve the IE incompatibility for PNG transparency using GWT? Here is the workaround by microsoft, but would be good to have GWT doing it for us... http://support.microsoft.com/kb/294714 BTW, any other formar besides PNG (not GIF please) that could do de job? Thanks!

GWT Plugin for FF and Chrome Not Working

2010-01-15 Thread Joe
I'm using the dev version of Chrome (4.0.295.0) on Windows XP. When I paste the URL (the one Eclipse produces when I start the server with my GWT app) it just runs the app, ignoring any breakpoints. After some searching, I found the URL to the GWT extension, and installed it into Chrome. If I

Re: MVP - interface that implements setVisible()

2010-01-15 Thread eneveu
Hi, Davis' solution is in my opinion the most elegant / simple solution to this problem. That being said, another solution I've used before for similar problems, involved the used of the adapter pattern: (note: typing this out of my head, I hope it compiles, but the main idea is here) --

Re: GWT Incubator Status Update and Schedule

2010-01-15 Thread eneveu
I agree with everything you said about the incubator. I think having these widgets and components added to GWT (with an API lifting if necessary) is awesome. Regarding the logging API, the gwt-log project is also worth considering: http://code.google.com/p/gwt-log/ Of course, if I had an

DockPanel Question

2010-01-15 Thread Sean
So, I was working with a DockPanel, and I want to remove a Widget. Seems to only be two ways, remove teh Widget or remove the Widget by it's index. Is there a way to remove Widgets by their Direction? I feel there should be a DockPanel.clear(DockPanel.NORTH) or something to that effect. For

Re: DockPanel Question

2010-01-15 Thread Deanna Bonds
Have you tried putting all the stuff you need to clear in a panel that you add/remove from the DockPanel areas? You could easily keep track of the one Panel in the area and might even be able to cache them. On Jan 15, 10:27 pm, Sean slough...@gmail.com wrote: So, I was working with a DockPanel,

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

2010-01-15 Thread codesite-noreply
Comment by thobias.karlsson: I have a button widget, which I want to have different styles for according to where in my application it is inserted. I don't use CssResource or ClientBundle since I want to be able to override the style of my button anywhere in the system. Also I'm NOT

[gwt-contrib] Re: webAppCreator should create new projects in standards mode

2010-01-15 Thread jgw
On 2010/01/14 22:15:13, jlabanca wrote: LGTM. http://gwt-code-reviews.appspot.com/130809 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fix UiBinder stylename, drop trivial RadioButtonParser

2010-01-15 Thread jgw
On 2010/01/15 02:11:47, Ray Ryan wrote: Review requested LGTM; good fix. There are a few long lines in UIObjectParser, but if checkstyle doesn't care, neither do I :) http://gwt-code-reviews.appspot.com/130810 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fix clobbering of style etc. when setting ImageResource

2010-01-15 Thread jgw
On 2010/01/15 02:20:59, Ray Ryan wrote: Ready for my close up, Mr. Weber. Smile! LGTM. http://gwt-code-reviews.appspot.com/130811 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r7405 committed - Created wiki page through web user interface.

2010-01-15 Thread codesite-noreply
Revision: 7405 Author: jlaba...@google.com Date: Fri Jan 15 07:16:11 2010 Log: Created wiki page through web user interface. http://code.google.com/p/google-web-toolkit/source/detail?r=7405 Added: /wiki/DataBackedWidgetsDesign.wiki === --- /dev/null +++

Re: [gwt-contrib] Re: GWT Incubator Status Update and Schedule

2010-01-15 Thread John LaBanca
I just created a new page on the wiki where we can share our design-in-progress and get feedback: http://code.google.com/p/google-web-toolkit/wiki/DataBackedWidgetsDesign We've barely started discussing the requirements, let alone the design, so we have nothing to report at the moment, but

[gwt-contrib] [google-web-toolkit] r7406 committed - Reverting r7403 because it is causing RpcValueTypesTest to fail....

2010-01-15 Thread codesite-noreply
Revision: 7406 Author: jlaba...@google.com Date: Fri Jan 15 07:23:09 2010 Log: Reverting r7403 because it is causing RpcValueTypesTest to fail. Patch by: jlabanca http://code.google.com/p/google-web-toolkit/source/detail?r=7406 Modified:

[gwt-contrib] [google-web-toolkit] r7407 committed - Make com.google.gwt.lang.Array's instance methods always be in the...

2010-01-15 Thread codesite-noreply
Revision: 7407 Author: sp...@google.com Date: Fri Jan 15 07:36:13 2010 Log: Make com.google.gwt.lang.Array's instance methods always be in the initial download. Review by: cromwellian http://code.google.com/p/google-web-toolkit/source/detail?r=7407 Added:

[gwt-contrib] Re: Fixes for issues 4366, 4447.

2010-01-15 Thread jlabanca
hendrik is right. This patch fixes setOpacity, but not getOpacity. We should fix this too. http://gwt-code-reviews.appspot.com/132806 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Class Array's methods are initial

2010-01-15 Thread spoon
Thanks, Ray! There does seem to be some sort of pattern with kinds of code that shouldn't be pruned or shouldn't be deferred loaded. http://gwt-code-reviews.appspot.com/132808 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Class Array's methods are initial

2010-01-15 Thread spoon
Committed at r7407. http://gwt-code-reviews.appspot.com/132808 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fixes for issues 4366, 4447.

2010-01-15 Thread jgw
On 2010/01/15 15:31:09, jlabanca wrote: hendrik is right. This patch fixes setOpacity, but not getOpacity. We should fix this too. Whoops, thanks Hendrik. I somehow completely failed to notice that getOpacity() even existed -- even though I probably wrote the damned thing :) I'll send out

[gwt-contrib] [google-web-toolkit] r7408 committed - Rolling back r7407 to unbreak the build.

2010-01-15 Thread codesite-noreply
Revision: 7408 Author: sp...@google.com Date: Fri Jan 15 08:24:03 2010 Log: Rolling back r7407 to unbreak the build. http://code.google.com/p/google-web-toolkit/source/detail?r=7408 Deleted: /trunk/dev/core/test/com/google/gwt/dev/jjs/impl/CodeSplitterTest.java Modified:

[gwt-contrib] Implement java.util.Random - avoid use of longs where possible

2010-01-15 Thread rice
Reviewers: scottb, Description: This is based on Harmony code (with Richard Zschech's gwt-java-math changes). I also made some improvements: 1) avoid use of longs where possible -- the common cases should all be int/double only 2) fix a minor bug in nextGaussian when the random variables are

  1   2   >