Re: How to deploy GWT application in tomcat

2009-11-26 Thread Tamás Gömbös
fine. 2009/11/18 Rinuz rkozd...@gmail.com Do you copy jars to WEB-INF? If don't, you must copy db_driver_connector.jar and gwt-servlet.jar. On 17 Lis, 12:29, Tamás Gömbös gomb...@gmail.com wrote: Well, I was managed to deploy the application but there's another problem. It seems

Re: How to deploy GWT application in tomcat

2009-11-26 Thread Tamás Gömbös
I forgot to mention that when I start the application in hosted mode and start it in a browser with the Compile/Browse button it also works properly. 2009/11/26 Tamás Gömbös gomb...@gmail.com I have copied all the required jars to WEB-INF. And my servlets work properly because they send back

How to deploy GWT application in tomcat

2009-11-17 Thread Tamás Gömbös
Greetings! I've finished my GWT application and I'd like to deploy it in tomcat. I've read a bunch of tutorials about this but I can't figure out how to do it. I've done the following things: - I compiled my application. - In the tomcat/webapps I created a project-name directory. - Then I

Re: How to deploy GWT application in tomcat

2009-11-17 Thread Tamás Gömbös
. What could be the problem? 2009/11/17 Tamás Gömbös gomb...@gmail.com Greetings! I've finished my GWT application and I'd like to deploy it in tomcat. I've read a bunch of tutorials about this but I can't figure out how to do it. I've done the following things: - I compiled my application

Re: I'm new to GWT and I have some questions...

2009-09-14 Thread Tamás Gömbös
Hi, For example, if you'd like to do something on the right side when you click on an item of the tree, you should do this: You create a widget which extends HorizontalSplitPanel and implements the SelectionHandler interface. You override the onSelection(SelectionEventi event) method of the

Re: FlowPanel

2009-09-09 Thread Tamás Gömbös
Hi, Put a HorizontalPanel on each VerticalPanel: HorizontalPanel hp1 = new HorizontalPanel(); vp1.add(hp1); To be honest, I don't really understand GWT's layout handling but this works everytime for me, when I'd like to change the size of a panel in both horizontal and vertical direction.

Re: Web Application in Regional Language

2009-09-09 Thread Tamás Gömbös
Hi Sundar, You develop a web app in your own language in the same way as do it in another language. You just translate its content to your language, that's all. If you are completely new to computer programming then maybe developing a web application using GWT is not the best point to start.

Re: Listen for click on VerticalPanel?

2009-09-08 Thread Tamás Gömbös
Hi, Just extend VerticalPanel and implement the HasClickHandlers interface with this widget. I hope this helps. bye! 2009/9/8 markww mar...@gmail.com Hi, Is it possible to listen for a click event on a VerticalPanel? I don't see any methods like addClickHandler() for it? Thanks

Implementing the HasLoadHandlers interface

2009-08-18 Thread Tamás Gömbös
interface? Thank you very much for your help, Tamás Gömbös P.S.: Alternatively, I tried to load the data into the widget via its parent's void onLoad() method and it doesn't load the ListBox when I open the page, only if I reload it. I suppose this is because of the client-server mechanism or something