Re: Background-Image in VerticalPanels (need Help!)

2009-01-17 Thread Sydus
I have found out the problem. It was just my lack of knowledge of CSS :). --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

No result message for Suggest Box

2009-01-17 Thread Twentyseven
Hello, I'm using SuggestBox and I have no problem with this composite. I'd just know if there's a way to display a No result message when the query return no result. Thank's, --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

Re: how to image.setUrl to (public/images/2341.gif);

2009-01-17 Thread Alex Luya
Thank you. I have uploaded an image:1232202393156.jpg to directory:src..client/ public/images,and then in method onSubmitComplete(),I set POJO object:model.setUrl(images/1232202393156.jpg),and create an Images object:new Image(model.getUrl()),add this image object to RootPanel,but got this

Strange image uploading issue

2009-01-17 Thread Alex Luya
I have uploaded an image:1232202393156.jpg to directory:src..client/ public/images,and then in method onSubmitComplete(),I set POJO object:model.setUrl(images/1232202393156.jpg),and create an Images object:new Image(model.getUrl()),add this image object to RootPanel,but got this error: [TRACE]

Best practise when dealing with a large style sheet

2009-01-17 Thread byhisdeeds
I have a GWT application where my one and only style sheet is 3000 lines long. needless to say the application freezes up from time to time when rendering panels. Can some tell me whether I GWT has a best practise to deal with many styling statements, each of which belong to just a set of panels.

Re: RPC call returning ListString fails

2009-01-17 Thread jos
yes, new ArrayListString followed by several add(some string) What's got me stuck is the backend saying it's waiting on 153 bytes from the client, like it's not event fired off the RPC call yet So List is OK, I don't need to use ArrayList ? On Jan 15, 11:30 pm, alex.d

Re: Is there a help system/framework?

2009-01-17 Thread Arthur Kalmenson
Not that I know of, I think you'll have to do this by hand. It's not too hard to do it with PopupPanel. -- Arthur Kalmenson On Wed, Jan 14, 2009 at 8:48 PM, Yellek yelle...@gmail.com wrote: I'm looking for a way to have a consistent help system or framework to assist users in using a site.

Re: Date+Time widget

2009-01-17 Thread Arthur Kalmenson
Please not that GWT 1.6 will come out with a DatePicker widget. You can also use the one in the incubator. -- Arthur Kalmenson On Thu, Jan 15, 2009 at 7:34 AM, Serge bse...@bk.ru wrote: Thank you very much! It works! --~--~-~--~~~---~--~~ You received

Re: Problem Runnig GWTTestCase on Linux

2009-01-17 Thread Arthur Kalmenson
I remember having a similar problem a while back. I think I had to install some additional libraries to get it to work. Make sure you have GTK libraries installed. -- Arthur Kalmenson On Thu, Jan 15, 2009 at 12:06 PM, gwt_newbie csde...@gmail.com wrote: I am trying to run GWTTestCase on

Re: How to make GWT put output files in a different location?

2009-01-17 Thread Arthur Kalmenson
This isn't really the best place to ask Ant questions You might get more help asking on an Ant mailing list. -- Arthur Kalmenson On Thu, Jan 15, 2009 at 3:52 AM, Rmon arman.mirkaz...@gmail.com wrote: Hi, I'm using GWT4nb (handy plugin) to write my GWT project. The back end that I'm

Re: GWT applications memory management

2009-01-17 Thread Arthur Kalmenson
As others have mentioned, this is pretty specific to IE (especially in IE 6). I'm not sure how much you can really do about it aside from what others have mentioned here. You can recommend for users to use a better browser, but I know that a lot of the time this is not possible. -- Arthur

Re: GWTx - anyone with experience?

2009-01-17 Thread Arthur Kalmenson
Ooops, my mistake. GXT also offers a binding mechanism, I thought he was talking about that. -- Arthur Kalmenson On Fri, Jan 16, 2009 at 9:20 AM, Rob Smith scubacarri...@gmail.com wrote: You're such a broken record :) You see GWT and 'x' and copy paste your complaint post. The user is

Re: GWT applications memory management

2009-01-17 Thread Adligo
Hi All, I have been writing GWT assuming that it did garbage collection similar to the way that java does, or in other words it looks for Objects (chunks of memory) which don't have any active references pointing to them and removes those from the heap via the garbage collector. Is this

Re: GWT applications memory management

2009-01-17 Thread Arthur Kalmenson
Your assumption is pretty much correct. The problem is memory management in Javascript is very dependent on the browser's implementation. However, in most cases I don't think it's as efficient as Java's memory management. Unfortunately, you can't really do much about this since it's a browser

Re: Date+Time widget

2009-01-17 Thread Fred Janon
Will the one in 1.6 from the incubator one? Thanks Fred On Sun, Jan 18, 2009 at 05:19, Arthur Kalmenson arthur.k...@gmail.com wrote: Please not that GWT 1.6 will come out with a DatePicker widget. You can also use the one in the incubator. -- Arthur Kalmenson

[newbie] general question: should I create one or two pages

2009-01-17 Thread Antoine Bruguier
Hello, I am designing a small GWT application that basically has two pages. The first one is a login page, that, once passed, gets you to the main page. How should I implemement that in GWT? Should I try to hide panels, etc? Or should I create two different pages. I have already created the

GWT + SPRING + HIBERNTE

2009-01-17 Thread Yossi
Hello, I am looking for a template or sample project that will enable me to use GWT + SPRING + HIBERNATE. Also it would be great if it will contain a session management with authentication (register/login). As I see it, this is the infrastructure of the application and I don't want to make

Re: Number of DAO's effect over all module sizes

2009-01-17 Thread Dean S. Jones
I think the original poster meant Application Domain Objects treating them as DTO's. I had a similar issue on a previous large project. The Domain Objects were Hibernate Mapped too, with 1-N and N-N relationships. Not only did the JavaScript grow, the Serialization became a huge overhead and a

Re: how to image.setUrl to (public/images/2341.gif);

2009-01-17 Thread Dean S. Jones
I can't tell you what your problem is exactly, but I CAN tell you allowing your upload servlet to have write access to your applications live deployment folder leaves your whole site about 60 seconds from being totally 0wN3d. Not to mention a new WAR deploy might wipe out everything you

Re: general question: should I create one or two pages

2009-01-17 Thread Dean S. Jones
Simplest: Create one page, display the Login Panel till you get a successful login, then replace the Root container with the main Application Panel. Store the Login info in the Servlet Session. On each RPC call, check the Servlet Session info is still valid If not, throw an Exception,

RPC call failed in Tomcat deployment

2009-01-17 Thread Geeya
Hi, I tried to create a sample application on RPC and built the war using TomcatWarBuilder project (http://code.google.com/p/gwt-examples/wiki/ gwtTomcatWarBuilder) and deployed the war in Tomcat server. I have also setup security.AllPermission in catalina.policy file as specfied in

Re: GWT + SPRING + HIBERNTE

2009-01-17 Thread Miroslav Genov
Hello, There are few examples located on springbyexample.org: http://www.springbyexample.org/twiki/bin/view/Main/ExamplesHome But I'm not sure where the site contains any examples with GWT and Hibernate. But for the hibernate you may use DTO ( Data Transfer Object) pattern to transfer data