Re: Image/Absolute panel...how to make the clickhandlers fire on the abs, ignoreing the image?

2009-10-11 Thread ThomasWrobel
Ok, one last thing, I -think- I found the solution, but someone will have to help me in how to adapt it for gwt; http://develobert.blogspot.com/2008/10/disable-firefox-image-drag.html On Oct 10, 1:20 pm, ThomasWrobel darkfl...@gmail.com wrote: oh, and I made a more simple sample file here;

Re: GWT 1.6 + Spring Security issue

2009-10-11 Thread Michał Sędzielewski
Any other workaround for this? I want to keep my source tree clean and followed http://blog.salvadordiaz.fr/2009/04/29/keep-your-source-tree-clean-gwt/ but I every time I lunch hm I get Configuration problem: Unable to locate Spring NamespaceHandler for XML schema namespace

lost Focus

2009-10-11 Thread muhannad nasser
i can find the onFocus event... but how i can handle the lost focus event thanks -- ~~~With Regards~~~ Muhannad Dar-Nasser ~~Computer Systems Engineering~~ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web

Inheriting a module is adding the inherited module code in compiled script even when im not using it

2009-10-11 Thread balachandra maddina
Hi There, I have observed that when i inherit a module and dont refer or use any of its classes and compile my module the resulted javascript is having the inherited module compile script in the inheriting module compiled javascript? if im not using any of the module classes then the

Re: lost Focus

2009-10-11 Thread Ian Bambury
onBlur Ian http://examples.roughian.com 2009/10/11 muhannad nasser muhannadna...@gmail.com i can find the onFocus event... but how i can handle the lost focus event thanks -- ~~~With Regards~~~ Muhannad Dar-Nasser ~~Computer Systems Engineering~~

GWT 2.0 RPC Problem

2009-10-11 Thread Zé Vicente
Hello all, I very happy to be able to test GWT 2.0. The new features are amazing The code splitting and Declarative UI are going to place GWT on the top of choice for UI development. I am quite sure the the market will require more professionals with GWT experience. Well, but we still have

Re: Announcing GWT 2.0 Milestone 1

2009-10-11 Thread Ed
Sky, Make sure to go through these steps as described here for an existing GWT project: http://code.google.com/eclipse/docs/existingprojects.html You can verify that your existing project is well prepared for gwt: you need to have two extra GWT builders in your project. If you have only one,

excluding source files with Eclipse plugin

2009-10-11 Thread Ed
Hi, How can I exclude source paths/files when compiling with the GWT Eclipse plugin? I have GWT project that has a dependency to another eclipse project. This eclipse project follows the maven structure, as such that it has a src/main/java and src/test/java path. The last one should be ignored

Re: Calling GWT service from native Java application

2009-10-11 Thread precog
There is no reason you couldn't. However, formatting the JSON request might be tricky, but I am sure that you can google around to see if there is a java library for creating JSON requests. A better question, is why not use something like soap to create your service? Maybe if you could

Re: StatusCodeException: call failed on the server ; see server log for details.

2009-10-11 Thread Jaroslav Záruba
I am facing similar issue yet the server log shows nothing suspicios even on log-level ALL. My first guess was it has something to do with serialization, but I have no clue what could it be... I'm returning LinkedListServiceItem, and ServiceItem has only one Integer and one String member. (I

Re: StatusCodeException: call failed on the server ; see server log for details.

2009-10-11 Thread Jaroslav Záruba
By server log I mean the one in GWT hosted browser... On Oct 12, 12:27 am, Jaroslav Záruba jaroslav.zar...@gmail.com wrote: I am facing similar issue yet the server log shows nothing suspicios even on log-level ALL. My first guess was it has something to do with serialization, but I have no

Mouse Event Handling?

2009-10-11 Thread AndyB
I am having difficulty understanding the GWT Mouse event handlers. I was hoping someone could offer some advice please. I understand that you must extend the HandlesAllMouseEvents class.. Which I have done as follows: class MouseDragEventHandler extends HandlesAllMouseEvents {

Re: com.google.gwt.user.client.rpc.StatusCodeException

2009-10-11 Thread Jaroslav Záruba
I see someone telling someone i told you where to find the log but I'm yet to see where it actually is... I mean is there some other log than the one in the hosted-browser? I'm getting the server call failed error and see log but my GWT- log shows nothing (except for totally useless 500 error)...

Re: StatusCodeException: call failed on the server ; see server log for details.

2009-10-11 Thread Sripathi Krishnan
Override the method *protected void doUnexpectedFailure(Throwable e)* in your RPC Servlet, and log the exception. GWT will invoke this method whenever a server exception occurs. --Sri 2009/10/11 Jaroslav Záruba jaroslav.zar...@gmail.com By server log I mean the one in GWT hosted browser...

Re: GWT 2.0 RPC Problem

2009-10-11 Thread Sripathi Krishnan
Documentation for IncompatibleRemoteServiceException says - *.. Exception that will be passed to the method when an incompatibility is detected between a RemoteService client and its corresponding RemoteService server.* Are you able to get run it in web mode (ie. after compiling using gwtc)?

Re: Inheriting a module is adding the inherited module code in compiled script even when im not using it

2009-10-11 Thread Sripathi Krishnan
GWT automatically eliminates code that is not being used, so you don't have to do anything. --Sri 2009/10/11 balachandra maddina chandu2...@gmail.com Hi There, I have observed that when i inherit a module and dont refer or use any of its classes and compile my module the resulted

Re: Deploying GWT RPC servlet as a separate WAR

2009-10-11 Thread Sripathi Krishnan
You should be able to decouple. 1. Split your code into three logical packages - client, server and shared. - client package has all UI code - shared has the RemoteService and corresponding Async Interfaces, plus any Serializable classes needed for the communication

Re: Calling GWT service from native Java application

2009-10-11 Thread CodeWarrior
What sample (the name of sample)? On Oct 10, 12:28 pm, Mohamed Mansour m0.interact...@gmail.com wrote: Try a sample application and see.  - Mohamed Mansour On Sat, Oct 10, 2009 at 6:17 AM, Karel Zabloudil karel.zablou...@gmail.comwrote: Hi, is it possible to call GWT service from

Re: How to add different css for each tab in the TabPanel

2009-10-11 Thread CodeWarrior
How...? Its the problem for maheshm On Oct 10, 10:57 pm, Brian Blain bbla...@gmail.com wrote: use addStyleName and CSS instead of directly setting properties, if you decide later on that a different color is needed you wont have to recompile code to have it change. On Oct 10, 10:52 am,

SerializationException

2009-10-11 Thread Uwe Post
Hello GWT group! I'm working on a GWT project using JDO/DataNucleus. So far everything works fine: I can detach objects from DataNucleus and pass them to the client via GWT RPC. Except for one function, which keeps throwing an IncompatibleRemoteServiceException (This application is out of

Configure GWT to use GAE

2009-10-11 Thread Patrick
I created a new sample application to run locally on a web sever and when creating the application I didn't select the option to use the Google Application Engine. The application works locally and now I want to run it as a Google App. Selecting properties in Eclipse and ticking the box Use

Re: Can GWT alone make a good application?

2009-10-11 Thread aMen
is this a secure approch?? --~--~-~--~~~---~--~~ 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

A new Netbeans 'UPDATED' Plugin, please!!

2009-10-11 Thread .tury
Dear Googlers, I wrote some Java EE Applications with Netbeans and, sincerely, I love EJBs and how they are managed by the IDE. Could you tell me why there aren't any updated plugins for GWT in Netbeans IDE? PS: I love the BigG Web Toolkit and how it works fast; I think GWT+EJB it's a perfect

Connection with DB

2009-10-11 Thread luciocamilo
I am having one problem, when I try to make my connection with the DB, I alredy try to use Berkeley and get the same problem. In debug mode, I can see that the problem occurs at method DriverManager.getConnection, but the same method with the same parameters works in another project that I dont

Re: using a JPA annotated class in a RPC call yelds IncompatibleRemoteServiceException

2009-10-11 Thread Alexandru Ioan Cucu
On Sun, Oct 11, 2009 at 12:29 AM, Alexandru Ioan alexandruioan.c...@gmail.com wrote: I came across this strage problem... If I remove the @Id and @GeneratedValue annotations, all runs fine... Hello, sorry, I forgot to mention. I use google web application, datanucleus as JPA

using a JPA annotated class in a RPC call yelds IncompatibleRemoteServiceException

2009-10-11 Thread Alexandru Ioan
I came across this strage problem... I have this entity bean @Entity public class User implements IsSerializable{ private static final long serialVersionUID = 1L; @Id @GeneratedValue private Long id; @Column private String name;

Re: Getting Started instructions - where is the GWT menu select Quit GWT

2009-10-11 Thread RedBull
I ran into the same thing - I just used the terminate on the console. This shuts down App Engine Server as the hosted browser view. On Oct 2, 4:35 am, R fiprojects@gmail.com wrote: I like the idea behindGWT, and the sample files that go with it - I'm reading through the Getting Started

gwt sqlexception from server side

2009-10-11 Thread fulya
Hi, I'm a new user of gwt. I'm trying to make a database collection from server side classes of a gwt app project. If I don't uncheck the setting: Use google App Engine from project proprties- App Engine, I'm getting the following exception. If I uncheck this property, I cannot deploy my project.

Problems creating new project with gwt and Eclipse on Mac

2009-10-11 Thread circaeng
Hi, I installed Eclipse and the GWT plugin on a Mac running OSX 10.4.11 and when I create a new project and then select debug as-Web application, after w while I get: ERROR] Unable to load module entry point class com.example.f175.client.F175 (see associated exception for details)

Re: How to add different css for each tab in the TabPanel

2009-10-11 Thread Mohamed Mansour
http://code.google.com/webtoolkit/doc/1.6/DevGuideUserInterface.html On Sun, Oct 11, 2009 at 12:43 PM, CodeWarrior codewarrio...@gmail.comwrote: How...? Its the problem for maheshm On Oct 10, 10:57 pm, Brian Blain bbla...@gmail.com wrote: use addStyleName and CSS instead of directly

Re: A new Netbeans 'UPDATED' Plugin, please!!

2009-10-11 Thread Scooter
I assume you have checked this link? https://gwt4nb.dev.java.net/servlets/ProjectDocumentList?folderID=7081expandFolder=7081folderID=0 On Oct 10, 1:41 pm, .tury rotund...@gmail.com wrote: Dear Googlers, I wrote some Java EE Applications with Netbeans and, sincerely, I love EJBs and how they

Re: Connection with DB

2009-10-11 Thread Chad
You can't use your own database with Google App Engine (GAE). You can either use GAE for all of your storage or turn GAE off in your project and use your own database for all of your storage. HTH, Chad On Oct 10, 10:19 pm, luciocamilo luciocam...@gmail.com wrote: I am having one problem, when

Re: Can GWT alone make a good application?

2009-10-11 Thread azure
I don't think we can trust RPC for such. So, is it better if I use Spring or similar technology at the serverside? On Oct 11, 9:40 pm, aMen ajrm...@gmail.com wrote: is this a secure approch?? --~--~-~--~~~---~--~~ You received this message because you are

Re: Can GWT alone make a good application?

2009-10-11 Thread Alvin Reyes
Same inquiry here, can i trust GWT with such development? Is it safe to use this technology in making an enrollment / payment system? On Mon, Oct 12, 2009 at 9:53 AM, azure rockan...@gmail.com wrote: I don't think we can trust RPC for such. So, is it better if I use Spring or similar

Does the usage of source tag without 'path' attribute been supported officially?

2009-10-11 Thread sardine
I have an existing library to be reused (partially) in the client side. It's package structure: com |- foo |- Core.gwt.xml -- Compromised |- core |- Core.gwt.xml -- Preferred |- TranslatableUtil.java |- NonTranslatableUtil.java For

Re: Can GWT alone make a good application?

2009-10-11 Thread Kamal Chandana Mettananda
How about using GWT with SSL? --- Kamal Mettananda http://lkamal.blogspot.com On Mon, Oct 12, 2009 at 7:28 AM, Alvin Reyes alvin.jay.p.re...@gmail.comwrote: Same inquiry here, can i trust GWT with such development? Is it safe to use this technology in

Re: How to add different css for each tab in the TabPanel

2009-10-11 Thread Kamal Chandana Mettananda
You do not need to hard code the values here, instead use CSS rules. You should use setStyleName() method. http://lkamal.blogspot.com/2007/08/add-css-style-for-gwt-widgets.html May be above could help you. On Sun, Oct 11, 2009 at 10:13 PM, CodeWarrior codewarrio...@gmail.comwrote: How...?

Re: Inheriting a module is adding the inherited module code in compiled script even when im not using it

2009-10-11 Thread balachandra maddina
Hi Sri, Yeah, that's what i read from the documentation, in such case if i have the inherit linkage in the gwt xml but didnt use any of the classes from the inherit module then the resulted javscript should not contain any script from the other module isnt it(since that is not used)? but when i

Datetime box

2009-10-11 Thread Joseph M
I have been messing with the new DatePicker / DateBox. New since 1.6. I would like to also be able to set the time, not just the date. Any suggestions about the easiest way to have a DateTimeBox? --~--~-~--~~~---~--~~ You received this message because you are

[gwt-contrib] Re: Any plans for supporting Scala ?

2009-10-11 Thread Lex Spoon
On Mon, Oct 5, 2009 at 12:23 PM, John Tamplin j...@google.com wrote: Why would that be easier than just parsing Scala and building an extended GWT AST from the Scala AST?  It seems like inventing a new language (even if it is close to Java) and modifying tools on both sides to use this would

[gwt-contrib] Re: Any plans for supporting Scala ?

2009-10-11 Thread Lex Spoon
On Mon, Oct 5, 2009 at 12:37 PM, Ray Cromwell cromwell...@gmail.com wrote: if I understand, Lex is not really talking about a new syntax/text representation, but an intermediate Java AST that has none of the restrictions that Java does. I was thinking it would be a text format, but it could

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

2009-10-11 Thread codesite-noreply
Comment by krisajenkins: I'm getting the same error as jdpatterson, and yes, my project has GWT App Engine enabled. Any ideas? For more information: http://code.google.com/p/google-web-toolkit/wiki/OophmForMacBasedGwtContributors --~--~-~--~~~---~--~~

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

2009-10-11 Thread codesite-noreply
Comment by sami.jaber: Ok, after digging more in the source code, its not a problem of i18n. This is just that ui:Hyperlink tag parser has not yet been implemented (in r6342). I have replaced the ui:Hyperlink by a ui:Button, it works fine. The impl contains the span tag and the

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

2009-10-11 Thread codesite-noreply
Comment by t.broyer: @sami.jaber: it should be a gwt:Hyperlink (same namespace as HTMLPanel), not a ui:Hyperlink (same namespace as UiBinder, msg and ph=); there's no specific parser for Hyperlink because the parser for HasHTML is enough. For more information:

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

2009-10-11 Thread codesite-noreply
Comment by t.broyer: This error means Firefox tries to load the compiled app, i.e. the devel mode plug-in is not detected. For more information: http://code.google.com/p/google-web-toolkit/wiki/UsingOOPHM --~--~-~--~~~---~--~~

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

2009-10-11 Thread codesite-noreply
Comment by sami.jaber: Yes, that what I thought initially but as the attribute setToken() doesn't exist neither in the Hyperlink user.ui class, I suspected that another class/parser would exists elsewhere. Anyway, that works better now after changing the prefix, the attribute and the

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

2009-10-11 Thread codesite-noreply
Comment by javierplaherr: Work fine in Windows XP, Firefox 3.0.13 and Vaddin libraries (http://vaadin.com/wiki/-/wiki/Main/OOPHM%20Step%20by%20Step) For more information: http://code.google.com/p/google-web-toolkit/wiki/UsingOOPHM --~--~-~--~~~---~--~~

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

2009-10-11 Thread Ray Ryan
BeanParser picks up things like setToken. There are very few custom parsers. On Oct 11, 2009 3:29 PM, codesite-nore...@google.com wrote: Comment by sami.jaber: Yes, that what I thought initially but as the attribute setToken() doesn't exist neither in the Hyperlink user.ui class, I suspected

[gwt-contrib] remote tests should depend on compile.tests

2009-10-11 Thread fabbott
Reviewers: Ray Ryan, Please review this at http://gwt-code-reviews.appspot.com/78807 Affected files: build.xml Index: build.xml === --- build.xml (revision 6346) +++ build.xml (working copy) @@ -108,11 +108,8 @@

[gwt-contrib] Re: Proposed API Addition - @WithModuleParameters on test cases

2009-10-11 Thread John LaBanca
@jat - When do you think we'll merge the htmlunit branch into trunk so we can check in this patch? Thanks, John LaBanca jlaba...@google.com On Fri, Oct 9, 2009 at 2:58 PM, Pascal Muetschard pmuetsch...@google.comwrote: I have updated the patch set to also have the benchmark test cases use the

[gwt-contrib] Re: Moving PagingScrollTable Friends to Trunk

2009-10-11 Thread John LaBanca
This has been delayed for a while (maybe Q2 of next year?). We want to refactor the PagingScrollTable and incorporate a ListModel/TreeModel that would apply to multiple widgets and incorporate data binding. It will take some time before anyone has enough time to start working on it. Thanks, John

[gwt-contrib] Re: Table framework

2009-10-11 Thread John LaBanca
Its been delayed while we work on GWT 2.0 and other features. We also want to refactor the table before moving it to trunk, and it might be a while before anyone has enough time to start working on it. Thanks, John LaBanca jlaba...@google.com On Sat, Oct 10, 2009 at 7:52 AM, dflorey