Re:

2009-02-08 Thread Shawn Brown
Do you have the Spring jar in your classpath ( MyApplication-shell) I have never run spring hosted. I run my app hosted but specify the server that I know I have spring configured on. Let me know if it works. Shawn On Mon, Feb 9, 2009 at 3:20 PM, GWT GWT wrote: > Hi , > I am new in GWT. > I

adding listener to gwt tree

2009-02-08 Thread Raju
ha, I am very new to GWT.When doing my application I need add to listener to my tree .But I am unable to do this . Any one can help me Here my code: /* * TreeMainEntryPoint.java * * Created on February 5, 2009, 2:36 PM * * To change this template, choose Tools | Template Manager * and open

[no subject]

2009-02-08 Thread GWT GWT
Hi , I am new in GWT. I am trying to develp an application using GWT+Spring . following are application code 1) MyApplication .java package com.client; import com.google.gwt.core.client.EntryPoint; import com.google.gwt.core.client.GWT; import com.google.gwt.user.client.rpc.AsyncCallback; impor

Getting an Error "No source code is available for type java.util.ResourceBundle;" while compilation.

2009-02-08 Thread Suresh
Hi, I'm trying to develop a module with GWT and integrate it with exisiting project in JS. My Page contains lot of list boxes for which i have to load the values from properties file. If i use "com.google.gwt.i18n.client.Constants" i have to write lot of getter methods for each values with interf

Re: ScrollPanel maxWidth or maxHeight?

2009-02-08 Thread alex.d
I see, I will try it - thank you all for your help. On 6 Feb., 19:32, gregor wrote: > Oh right... > > I think you've got to make sure that the whatever the ScrollPanel > contains has actually reduced in size already - if it hasn't the > ScrollPanel will refuse to cooperate (i.e. it won't squash

Re: Announcing GWT 1.6 Milestone 1

2009-02-08 Thread Sebastien
Hi, I take a look on the build.xml of samples. I didn't see any special difference. Here is a part of my build.xml : => [gwtc] Compiling module com.raisepartner.prism.PRISM [gwtc]Compiling 10 permutations [gwtc] Permutat

Re: Calling of business method from Client

2009-02-08 Thread Arul
Thanks Gregor, let me explore the options you mentioned. On Feb 6, 10:52 pm, gregor wrote: > Hi Arul, > > Check out: > > http://code.google.com/p/google-web-toolkit-incubator/wiki/TreeTable > > Personally I find tree tables sometimes look confusing, especially if > there are significant differe

Re: Drag and drop problematic with firefox & ie

2009-02-08 Thread Amir Michail
On Sun, Feb 8, 2009 at 10:02 PM, Adam T wrote: > > just try using the gwt drag n drop library which has solved all these > "problems": http://code.google.com/p/gwt-dnd/ Yes, I know about this library, but it's not clear to me that it would be a good fit for this game. Amir > > //Adam > > On 8

Re: Drag and drop problematic with firefox & ie

2009-02-08 Thread Adam T
just try using the gwt drag n drop library which has solved all these "problems": http://code.google.com/p/gwt-dnd/ //Adam On 8 Feb, 23:26, Amir Michail wrote: > On Sun, Feb 8, 2009 at 2:18 PM, Dan Ox wrote: > > > I think that rather than trying to change a browser to fit your > > implementati

Re: Best image preloading practice?

2009-02-08 Thread davidroe
I have only skimmed this thread, and I've not looked at the game, but here is my 2c. my situation is a little different - I'm not pre-loading images per se, but I am loading them in the background. I use a hidden panel (hidden by being positioned off screen rather than display:none) which I load

Re: how to access objects from another frame?

2009-02-08 Thread Dan Ox
Is there a reason why you cannot implement this using a single frame containing two GWT scroll panels. In one pannel is all your regularly refreshing content, in the other is the content the user is interested in. This way your object model is shared across the application and there is only a nee

Re: Anything wrong with the GWT-Tutorial's url?

2009-02-08 Thread Dan Ox
That is because it is a link to a google code documentation reader page. On Feb 9, 1:27 pm, ChaoS wrote: > http://code.google.com/intl/zh-CN/docreader/#p=google-web-toolkit-doc... > > Why does this url take me to "Google Code documentation reader"? --~--~-~--~~~---~--

Anything wrong with the GWT-Tutorial's url?

2009-02-08 Thread ChaoS
http://code.google.com/intl/zh-CN/docreader/#p=google-web-toolkit-doc-1-5&s=google-web-toolkit-doc-1-5&t=GettingStarted Why does this url take me to "Google Code documentation reader"? --~--~-~--~~~---~--~~ You received this message because you are subscribed to t

Re: Old issues in the RichTextEditor

2009-02-08 Thread vruiz.jur...@gmail.com
On 6 feb, 22:50, Sumit Chandel wrote: > Hi Vicente, > Thanks for bumping this up. In aggregate, it seems that there are a few > developers that are waiting for these enhancements to RichTextEditor, so > these are definitely important to consider as we roll out future releases. nice... > I parti

Re: how to access objects from another frame?

2009-02-08 Thread asdf_asdf
His, Will try to follow some ideas from http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/cd09890e8b532e2e/86bd6b94c573fdb6?lnk=gst&q=share+object#86bd6b94c573fdb6 http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/9af4fa30bf762fd2 and "GWT in Action" to s

Re: GWT 1.6 preliminary exploration and doc wish list

2009-02-08 Thread Duong BaTien
> The GWT team is happy to announce the availability of 1.6 Milestone 1! > Binary distributions are available for download directly from GWT's Google > Code project. > Happy coding, > Scott, on behalf of the GWT team Greetings: Thanks for the tremendous efforts from GWT team and supporting

Re: Announcing GWT 1.6 Milestone 1

2009-02-08 Thread Dop Sun
I guess in the sample projects (included in the M1 build), there is build file for each and every of them, and within that, there build tasks for the project. Maybe, you can have a try what there? On Feb 9, 2:49 am, Sebastien wrote: > Hi, > > I am interested to migrate from the 1.5.3 to the 1.6.

Re: Drag and drop problematic with firefox & ie

2009-02-08 Thread Amir Michail
On Sun, Feb 8, 2009 at 2:18 PM, Dan Ox wrote: > > I think that rather than trying to change a browser to fit your > implementation, you should try changing your implementation to fit the > browsers you want to run it in. Yes, but how? Is it easy to fix? Amir > > On Feb 9, 9:02 am, "amich...@g

Re: Drag and drop problematic with firefox & ie

2009-02-08 Thread Dan Ox
I think that rather than trying to change a browser to fit your implementation, you should try changing your implementation to fit the browsers you want to run it in. On Feb 9, 9:02 am, "amich...@gmail.com" wrote: > Hi, > > I'm trying to use my own implementation of drag and drop in a Tetris- >

Re: gwt + gmail template/site

2009-02-08 Thread Dan Ox
In the onclick of the "articles" link, change the "articles" link's style. On Feb 9, 6:26 am, lidos wrote: > Ty for the immediate answer. > I know how to make on click events, i just dont know how to make this > very simple panel. I mean i want to be clearly seen what the user > pressed by drawi

Drag and drop problematic with firefox & ie

2009-02-08 Thread amich...@gmail.com
Hi, I'm trying to use my own implementation of drag and drop in a Tetris- like game: http://www.numbrosia.com (not Numbrosia, but you can play it there) It seems ok on Chrome, but Firefox and IE seem to have their own idea of what drag and drop should do that interferes with my implementation o

Re: gwt + gmail template/site

2009-02-08 Thread lidos
Ty for the immediate answer. I know how to make on click events, i just dont know how to make this very simple panel. I mean i want to be clearly seen what the user pressed by drawing a line like here. For instance if the user perss Articles, it will be something like that -

GWTShell crashes quickly under ubuntu with 64bit processor

2009-02-08 Thread Sebastien
Hi, I am using GWT 1.5.3 version. Since 3 years I worked with GWT under linux (ubuntu 8.10) with a 32 processor. Since few days I have a new computer with 64bit processor (ubuntu 8.10 again). My project works well in compiled mode. But at each time, I use the simulator (GWTShell), it crashes quic

Re: gwt + gmail template/site

2009-02-08 Thread Sebastien
Hi, You have to divide your screen space in severl areas managed by panels. On click event you can update the content the expected panel. Take a look to the samples provided in the binary distribution. Regards, Seb On 8 fév, 15:41, lidos wrote: > Hello, > I m new to gwt community and i would l

Re: any advices to make gwt applications look nicer/

2009-02-08 Thread Sebastien
Hi, - First, I suggest you to use SmartGWT. GWT ext will not evolve lot due to ext licence. GXT is not free and today it does not offer enough widgets than smart GWT. - Second you have to play with CSS. For the last point I advice you to define an interface containing style definitions (String fi

Re: Announcing GWT 1.6 Milestone 1

2009-02-08 Thread Sebastien
Hi, I am interested to migrate from the 1.5.3 to the 1.6.0 M1. When I use this M1 with -war option, the the compiler output is not like an expanded war. I tried to specify all parameters (-war, -gen, - extra ..) without success. The output of the compiler is always similar to the output of the 1.

Doing AOP, Dojo style

2009-02-08 Thread jarrod
I'm a huge fan of GWT, but I'm also a big fan of development methodologies, like Inversion of Control and Aspect-Oriented Programming. IoC and AOP are two concepts I've struggled to work into the GWT framework since day one, with AOP being a bit more difficult to achieve than IoC, in my opinion.

Re: Announcing GWT 1.6 Milestone 1

2009-02-08 Thread Itamar Ravid
Hi - I've perused the WAR Design document, but I've several questions that remained unanswered. In my project, we use GWT-SL and Gilead - the former for exporting Spring beans as GWT-RPC services, and the latter for transferring Hibernate-enabled objects back and forth between the server and clien

Re: Does the GWT compiler have problems with Generics?

2009-02-08 Thread Damien Picard
You're welcome. I've already been confronted with this problem and the GWT compiler is not verbose with this. I've find this information in a tutorial where these two conditions was exposed. 2009/2/8 marcelstoer > > Thanks for your quick reply. > > On Feb 8, 5:37 pm, Damien Picard wrote: > >

Re: Does the GWT compiler have problems with Generics?

2009-02-08 Thread marcelstoer
Thanks for your quick reply. On Feb 8, 5:37 pm, Damien Picard wrote: > Hi, > > Your class has to implement the interface > com.google.gwt.user.client.rpc.IsSerializable and you have to add a As of GWT 1.5 this is no longer required, implementing java.io.Serializable is enough. > free-paramete

Re: Announcing GWT 1.6 Milestone 1

2009-02-08 Thread Arthur Kalmenson
It doesn't, OOPHM is suppose to be scheduled for 2.0. It is possible to use OOPHM from the branch, although I haven't tried it myself. -- Arthur Kalmenson On Sun, Feb 8, 2009 at 8:28 AM, Samyem Tuladhar wrote: > > Great! I was wondering if this version supports OOPHM? > > Thanks, > Samyem > >

Re: Does the GWT compiler have problems with Generics?

2009-02-08 Thread Damien Picard
Hi, Your class has to implement the interface com.google.gwt.user.client.rpc.IsSerializable and you have to add a free-parameters constructor as is : public class MyClass implements IsSerializable{ public MyClass(){ ... } } Maybe this default constructor misses ? Regards Damie

Does the GWT compiler have problems with Generics?

2009-02-08 Thread marcelstoer
My *Async interface contains the following method signature: void reportsAvailableFor(Class rowClass, AsyncCallback callback); The method signature in the application i.e. Servlet interface likewise looks like: Boolean reportsAvailableFor(Class rowClass); The GWT shell complains at startup tha

Re: JDBC realm for form-based authentication in hosted mode

2009-02-08 Thread marcelstoer
On Feb 5, 2:22 am, Sumit Chandel wrote: > Hello everyone, > I'm not very familiar with JDBC realm, but for starters, are you using > hosted mode with the -noserver option (i.e., running hosted mode with your > own custom Tomcat server that has JDBC realm configured?). No, I'm running an out-of

Re: Best image preloading practice?

2009-02-08 Thread darkflame
Well, I know prefetch is working to some extent (at least, in Chrome and Firefox), as I can watch it prefetching rather large volumes of images that arnt used in the html at all. All of those images must have been triggered by the prefetch loop. Still, I'll read over the Mozzilla doc, maybe thing

gwt + gmail template/site

2009-02-08 Thread lidos
Hello, I m new to gwt community and i would like to learn how to build a similar panel as gwt and gmail site. I want a panel like a horizontal one. but when u click something in the right panel for example and then apart from the appropriate data to be shown into the left panel, a line like here i

Re: Announcing GWT 1.6 Milestone 1

2009-02-08 Thread Samyem Tuladhar
Great! I was wondering if this version supports OOPHM? Thanks, Samyem On Feb 6, 10:26 am, Scott Blum wrote: > Greetings GWT developers, > > The GWT team is happy to announce the availability of 1.6 Milestone 1! > Binary distributions are available for download directly from GWT's Google > Code

any advices to make gwt applications look nicer/

2009-02-08 Thread ytbryan
hi all, is there a specific way to create nicer and more quality gwt application? i do know about mygwt and gwt ext. but is there other ways? thank you any advices are welcome. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Goo