showing a Popup and automatically deactivate all the other widgets??

2010-01-28 Thread ojay
Hi, I request a few strings from the user and if the values are not correct format will a popup occur and show what is wrong. But as I recognized now it is possible to press other buttons on the page although the popup ist still open. How can I deactive everything except the popup??? Thanks --

Re: showing a Popup and automatically deactivate all the other widgets??

2010-01-28 Thread ojay
Thanks a lot ... If there is always such a solution for a problem :-) On 28 Jan., 16:19, mariyan nenchev nenchev.mari...@gmail.com wrote: popup.setModal(true); On Thu, Jan 28, 2010 at 5:17 PM, ojay oliver.ja...@googlemail.com wrote: Hi, I request a few strings from the user

How to wait until the user clicked a button in a PopupPanel???

2010-01-26 Thread ojay
Hi, I have user editor and when somebody clicks the delete button I show a popup in which the user has to confirm that all the data should be deleted. Only if this will be confirmed with yes, the data will be deleted in the database. Now is my problem that I do not know how I can wait until the

Re: MVP Article... Source Code?

2010-01-16 Thread ojay
Hi, i agree with Julien it would be interesting how his case would be handled. Does somebody has an idea? Hope somebody will response to this topic On 10 Jan., 14:30, Juju funkybre...@gmail.com wrote: Hello, There is one thing that I don't understand very well. I'm building an

Changing mouse cursor during rpcservice is working

2010-01-13 Thread ojay
Hi, I have two panels and if I press a button in the right panel then some stuff will be done on the server and then the other panel will be filled with data. Now I am searching how I can change the mouse cursor when I called the rpc and change it back on the rpc success method. Can somebody tell

How to realize paging in combination with a FlexTable

2010-01-06 Thread ojay
Hi, I stuck on the problem how I can implement paging in my GWT-App. I want to show a list of users in a view, therefore I use the FlexTable. Now it can happen that there are hundreds of users which is a bit too much for the view, so I want to split it to 20 users on the screen and let the client

Step-by-Step tutorial how to use external Tomcat with GWT 2.0

2010-01-05 Thread ojay
Hi, I am looking for a tutorial about using an external tomcat server with gwt 2.0. I could only find discussions about older GWT versions, and actually I am stuck at this step. Does somebody can show me the steps how I can use the sample gwt project, which will be created by the google eclipse

How to use a initServlet for database connections in host mode??

2010-01-05 Thread ojay
Hi, I need to access my database in the server area of my gwt application. Now I have the problem that i cannot init the database connection. I am using hibernate to access my database, in my previous applications (struts) I used the Datasource of the underlying tomcat to start and database

Re: How to use a initServlet for database connections in host mode??

2010-01-05 Thread ojay
Hi, I forgot a tiny thing in the web.xml :-) It's better to use the load-on-startup0/load-on-startup option in the web.xml so that the servlet will be started :-) On 5 Jan., 15:11, Qian Qiao qian.q...@gmail.com wrote: On Tue, Jan 5, 2010 at 22:08, ojay oliver.ja...@googlemail.com wrote: Hi

Re: Step-by-Step tutorial how to use external Tomcat with GWT 2.0

2010-01-05 Thread ojay
. HIH On Tue, Jan 5, 2010 at 10:54 AM, ojay oliver.ja...@googlemail.com wrote: Hi, I am looking for a tutorial about using an external tomcat server with gwt 2.0. I could only find discussions about older GWT versions, and actually I am stuck at this step. Does somebody can show me

Integrating GWT into existing Struts 1.2.9 application

2010-01-04 Thread ojay
Hi, I want to integrate a few GWT-Modules into an existing Struts 1.2.9 application. I read a few posts in this group but still I have not really the knowledge how to do that. Can somebody explain me the necessary steps for an integration. What I wantI added a button into a jsp page of the

Re: How to react on every new typed in character of a textbox

2009-10-01 Thread ojay
correctly, is simply the filterText isnt being erased/reset when you want it to be. Remember you can also use onKeyUp to get the state after the key is pressed and released. On Sep 30, 3:50 am, ojay oliver.ja...@googlemail.com wrote: Hi, I have a textbox and a list of values

Re: How to initiate a event inside a KeyPressHandler

2009-09-29 Thread ojay
Hi thanks for your response but i don't get it :-( Can you make an example with pseudo code? Thanks On 27 Sep., 02:09, Dominik Steiner dominik.j.stei...@googlemail.com wrote: Hi ojay, did you try to make your KeyListener an anonymous class so that you can reference from within

How to react on every new typed in character of a textbox

2009-09-29 Thread ojay
Hi, I have a textbox and a list of values in a listbox. Regarding of the input of the typed in value of the textbox the list will be filtered. I've managed this so far, but it's not working as expected. For example you typed in AAA then every value in the list which does not contain AAA will be

How to initiate a event inside a KeyPressHandler

2009-09-26 Thread ojay
Hi, after I read the intro to gwt in practice and looking around on the gwt site I just started my first steps with gwt and now I'm stuck. I guess its an easy question for you guys... I have a textbox and a listbox in my project. Now I added a KeyPressHandler to the textbox so that I can do