Re: Cannot run GWT application in hosted mode

2008-12-28 Thread basil
The problem was caused by the (!) mark in the GWT path (D:\!Devel\gwt- windows-1.5.3\). I've changed the path and the problem is solved now. The life is much easier now :) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

Radio Buttons Question

2008-12-28 Thread fatjack1...@googlemail.com
Hi there, I have the following question regarding Radio Buttons. I have added a RadioButton to an inner class as follows: class ServerStatsUpdater extends AbstractAsyncHandler { public void handleFailure(Throwable caught){ } public void handleSuccess(Object result){

Re: Radio Buttons Question

2008-12-28 Thread Ian Bambury
I think you just need a clicklistener don't you? And then check the state of the radiobutton. Same thing as http://examples.roughian.com/#Widgets~CheckBox or have a look at http://examples.roughian.com/#Listeners~ClickListener Ian --~--~-~--~~~---~--~~ You

Re: Radio Buttons Question

2008-12-28 Thread fatjack1...@googlemail.com
Hi, Cheers for your reply. The example does not say how to use it for Radio Buttons. I can not get my head round how to implement a click listener for a Radio button. You can only have 2 parameters for a radio button, and I am already using 2. The examples seem to add a click listener as a

Re: Error's , PLEASE HELP ME :)

2008-12-28 Thread King
On 27 Dez., 14:12, Lothar Kimmeringer j...@kimmeringer.de wrote: King schrieb: com.google.gwt.core.client.JavaScriptException: (TypeError): '$wnd.Ext.StatusBar' ist Null oder kein Objekt Have you searched for this error-message using your search-engine of least mistrust? There should

Re: Error's , PLEASE HELP ME :)

2008-12-28 Thread King
On 27 Dez., 14:12, Lothar Kimmeringer j...@kimmeringer.de wrote: King schrieb: com.google.gwt.core.client.JavaScriptException: (TypeError): '$wnd.Ext.StatusBar' ist Null oder kein Objekt Have you searched for this error-message using your search-engine of least mistrust? There should

Re: Radio Buttons Question

2008-12-28 Thread Ian Bambury
You can't do everything in one statement (well, actually you can, but it gets unreadable and unless you are a C programmer, you won't want to do it like that) RadioButton rb = new RadioButton(group, radioButtonText); rb.addClickListener(listener); editItemsRadioPanel.add(rb); Ian

Re: Radio Buttons Question

2008-12-28 Thread fatjack1...@googlemail.com
Thanks for your reply. I now have the click listener working for the Radio Buttons. However, I now have a new problem. I need to get the text associated with the Radio Button and put into a String. So at the moment I have: ClickListener listener = new ClickListener() { public void

Re: Radio Buttons Question

2008-12-28 Thread Ian Bambury
RadioButtons are a pain like that. Obviously I don't really know what you are doing with this, but one option would be to subclass RadioButton. You can then have it listen to itself, and fill a static field with the last selected text, or have a static field which contains the currently selected

Re: Radio Buttons Question

2008-12-28 Thread fatjack1...@googlemail.com
I basically just need to extract the text that is associated with the 'radioButtonText' field when an item is selected. (I will then send this value back to the server, to be used as part of an SQL statement). Can you give an example of how to use a subclass RadioButton? I have never used

Re: Error's , PLEASE HELP ME :)

2008-12-28 Thread Lothar Kimmeringer
King schrieb: On 27 Dez., 14:12, Lothar Kimmeringer j...@kimmeringer.de wrote: King schrieb: com.google.gwt.core.client.JavaScriptException: (TypeError): '$wnd.Ext.StatusBar' ist Null oder kein Objekt Have you searched for this error-message using your search-engine of least mistrust?

Re: Radio Buttons Question

2008-12-28 Thread Ian Bambury
Something like this: import com.google.gwt.user.client.ui.ClickListener; import com.google.gwt.user.client.ui.RadioButton; import com.google.gwt.user.client.ui.Widget; class MyRadioButton extends RadioButton implements ClickListener { private static MyRadioButton currentButton = null;

Re: OOPHM and 1.5

2008-12-28 Thread Joonas
So far it has been easy - just compiled the OOPHM branch from SVN. - Joonas On Dec 26, 7:15 pm, jay jay.gin...@gmail.com wrote: Would you mind sharing what you've done (step-by-step, or at least an outline of the steps) so far to get OOPHM working for you? Thanks! jay On Dec 25, 3:33 

Job opening for GWT developer

2008-12-28 Thread DaBlick
My company is looking for Java web developers with GWT experience. (Additional experience with Ext-GWT is a plus).We are a startup developing a cutting-edge web-based application for schools. You'd be getting in on the ground floor. I've provided the job description below. Please send

Re: Job opening for GWT developer

2008-12-28 Thread David Hoffer
Where would these jobs be located? -Dave On Sun, Dec 28, 2008 at 1:15 PM, DaBlick dabl...@gmail.com wrote: My company is looking for Java web developers with GWT experience. (Additional experience with Ext-GWT is a plus).We are a startup developing a cutting-edge web-based application

Re: Exception in RPC call - 'XMLHttpRequest' is undefined in GWT 1.5.3 in IE

2008-12-28 Thread NItin
Hi all, Thanks for reply.. BTW, I could able to find the problem in my code which was causing this problem. In my JSP there was JS code for AJAX request other than that of the GWT. In that JS code we were used XMLHttpRequest as variable name and was attached to window, In GWT 1.5.3 this

Re: Poor performance for simple query - seems to be in the deserialisation mostly

2008-12-28 Thread John Lonergan
Hi - yep there was a problem in my test program but now that that's ironed out I'm getting ok'ish performance in FF3 and Chrome however in IE the perf is poor. All the time is spent populating the grid / rendering. IE is the target deployment platform - they only have IE installed. Have been

How to wrap a text in a text box

2008-12-28 Thread Ananda Rao
Hi , i have a code which will display the text from the database into the textbox. i want to wrap the text inside the textbox so that i can see entire text without moving my cursor. can any one tell me how can i do this please --~--~-~--~~~---~--~~ You received

Listbox Listener

2008-12-28 Thread jake H
Hellooo i m wondering how can i implement a ListBox listener. I save my data into an 2-dimension array. In the ListBox i m showing the first element of every array data[x][0]. But i want when the user select any of these elements in a panel next to the ListBox the rest data to be shown.

Re: Who's Using GWT?

2008-12-28 Thread Dobes
We're using it to develop online accounting software: http://www.clarityaccounting.com/demo?utm_source=gwt-group On Dec 11, 5:39 pm, Sumit Chandel sumitchan...@google.com wrote: Hello everyone, We've recently updated the GWT homepage to include a page displaying a non-exhaustive list of

Re: Listbox Listener

2008-12-28 Thread Litty Preeth
May be you shud add a ChangeListener to the ListBox element and implement ur logic in the onChange() method. On Mon, Dec 29, 2008 at 12:13 PM, jake H pnosti...@gmail.com wrote: Hellooo i m wondering how can i implement a ListBox listener. I save my data into an 2-dimension array. In the

So I want to put some shared classes in a Jar file...

2008-12-28 Thread dduck
Hi, I have a project projectone that looks roughly like this: com.company.gwt.projectone It contains some classes that I would like to re-use in another project/module projecttwo. I assume that the best way to do that, would be to extract those classes, and put them in a Jar file. The classes