Re: No Source code is available for type client.Utilityt, did you forget to inherit a required module?

2013-03-15 Thread Michael Prentice
I ran into this sort of a problem today. I followed the steps from TONS of articles, tutorials, guides, and posts. But none worked! Here was the final solution after hours of banging my head: I was using the source path tag wrong in gwt.xml in my external jar: *WRONG:* *RIGHT:* None of the

Re: No Source code is available for type client.Utilityt, did you forget to inherit a required module?

2011-02-09 Thread NAARAYANA REDDY NANDIGAMA
Hi, My requirement is I need to populate the data from my DTO class which is there on serverside. So could you please advise me on how to populate the data from DTO classes to text boxes. On Tue, Feb 8, 2011 at 11:07 AM, NAARAYANA REDDY NANDIGAMA < nandigam...@gmail.com> wrote: > Okay. Thank you.

Re: No Source code is available for type client.Utilityt, did you forget to inherit a required module?

2011-02-08 Thread NAARAYANA REDDY NANDIGAMA
Okay. Thank you. On Tue, Feb 8, 2011 at 10:38 AM, Hilco Wijbenga wrote: > On 8 February 2011 10:20, NAARAYANA REDDY NANDIGAMA > wrote: > > I am talking about two buttons having the same text message in java. > > private Button validateButtonOne = new Button(); > > private Button validateButtonTw

Re: No Source code is available for type client.Utilityt, did you forget to inherit a required module?

2011-02-08 Thread Hilco Wijbenga
On 8 February 2011 10:20, NAARAYANA REDDY NANDIGAMA wrote: > I am talking about two buttons having the same text message in java. > private Button validateButtonOne = new Button(); > private Button validateButtonTwo = new Button(); > validateButtonOne.setText("Validate"); > validateButtonTwo.setTe

Re: No Source code is available for type client.Utilityt, did you forget to inherit a required module?

2011-02-08 Thread NAARAYANA REDDY NANDIGAMA
I am talking about two buttons having the same text message in java. private Button validateButtonOne = new Button(); private Button validateButtonTwo = new Button(); validateButtonOne.setText("Validate"); validateButtonTwo.setText("validate"); buttonlisteners(validateButtonOne); buttonListene

Re: No Source code is available for type client.Utilityt, did you forget to inherit a required module?

2011-02-07 Thread Hilco Wijbenga
On 7 February 2011 17:41, NAARAYANA REDDY NANDIGAMA wrote: > I have another requirement.. I have two buttons with same name "validate". I > need to identify which button is clicked when I user click on any one of > validate buttton. I thought i can use button.getText but both buttons has > the sam

Re: No Source code is available for type client.Utilityt, did you forget to inherit a required module?

2011-02-07 Thread NAARAYANA REDDY NANDIGAMA
Thank you. I have another requirement.. I have two buttons with same name "validate". I need to identify which button is clicked when I user click on any one of validate buttton. I thought i can use button.getText but both buttons has the same name so not sure what to do. Could you please advise m

Re: No Source code is available for type client.Utilityt, did you forget to inherit a required module?

2011-02-07 Thread Hilco Wijbenga
On 5 February 2011 21:14, Dallas007 wrote: > Hi, > i am new to GWT so need help please. I'm am not able to compile my > code due to below error. > > Here are my project details, > I have added a new class Utility.java which is out side of Client > package. I have instantiae the Utiltity object ins

No Source code is available for type client.Utilityt, did you forget to inherit a required module?

2011-02-07 Thread Dallas007
Hi, i am new to GWT so need help please. I'm am not able to compile my code due to below error. Here are my project details, I have added a new class Utility.java which is out side of Client package. I have instantiae the Utiltity object inside cliant code and imported the class. So I am not sure