Issue with deploying my GWT app

2009-05-09 Thread mrfreeze81
Hi, I'm using GWT 1.6.4. I'm trying to deploy my war file from the simple starter program given by GWT itself to my Resin server v2.1.13. I have not done any changes to the application. Only created a war file and dropped it into the webapps folder. When I try to use RPC, I get the following

Re: Issue with deploying my GWT app

2009-05-09 Thread mrfreeze81
Yes my class is in the right directory, I am able to launch it on the hosted mode as well as deploy it on my local resin server on my machine. When I try to deploy it onto a 3rd party server, is when I get the error. Also, I noticed that on the 3rd party server, once I drop the the war file, the

Re: Changing CSS for TabPanel

2009-05-09 Thread mrfreeze81
GWT has its own CSS for the widgets, you will have to change that inorder to affect the widgets (in your case the tabpanel). Add this to your CSS file, eg:- .gwt-TabPanel { color: #3; } .gwt-TabPanelBottom { } etc. CSS Style Rules * .gwt-TabPanel { the tab panel itself } *

RPC Deployment issue

2009-05-07 Thread mrfreeze81
Hi, I'm using GWT 1.6.4. I'm trying to deploy my war file from the simple starter program given by GWT itself to my Resin server v2.1.13. I have not done any changes to the application. Only created a war file and dropped it into the webapps folder. When I try to use RPC, I get the following

Re: History between pages

2009-05-01 Thread mrfreeze81
Hey Adam, Thanks for the reply. It makes a lot of sense. I was doing everything you had mentioned except that I did not change the state on button clicked. It made sense to me then, because onButtonClick(){ Rootpanel.get().add(new Page2()); } and Page2 constructor had the change in state

History between pages

2009-04-25 Thread mrfreeze81
Hi, I'm implementing a code using GWT. I want to implement history using ValueChangeHandler. This is a feature in the new 1.6 version of GWT. This is how my application looks for now I have a new class for every page I want to create. i.e page1.java and page2.java each of which extents

Using History, navigation bw pages

2009-04-19 Thread mrfreeze81
I am creating an app, navigating from one page to another using history. I have a main.html page and I have a div=mainpanel as a place holder for my GWT panel. My panel has the core features of the app, some HTML content, etc. When I navigate from one page to another I use

navigating from one HTML page to another

2009-04-03 Thread mrfreeze81
I want to navigate from one HTML page to another (P1.html to P2.html). On start up my code loads P1.html as entrypoint. I have a few buttons there as navigation buttons. One of the buttons when clicked should take me to p2.html. I have to load a new page (that's my requirement) but do not want

Re: Loading new HTML page when button is clicked

2009-03-05 Thread mrfreeze81
Thanks Ian, I have actually coded with the History() class, I think I must have done something wrong, because, every time I refresh the page it still take me back to the first page that it loads onModuleLoad. I guess my history is getting set back to the first token. Freeze

Loading new HTML page when button is clicked

2009-03-04 Thread mrfreeze81
Hello, I'm trying to navigate from one HTML page to another when a button is clicked on the first. I have a button listener added and it's inside a panel. Now when I click the button, I want to load a new page. I do not want to use code RootPanle.get().add(new Page1); . . when