Re: How to use session

2009-08-29 Thread Gerald Fernando
Thomerson Thank You very much. I have done successfully from your idea. ThanksRegards, Gerald A On Fri, Aug 28, 2009 at 9:13 PM, Jeremy Thomerson jer...@wickettraining.com wrote: So, declare the constructor that you need to pass in the variable. It's okay to have multiple constructors.

Re: How to use session

2009-08-28 Thread Gerald Fernando
hi Thomerson, Actually my page(RSSPage) this call sectorPanel class extends Panel like public class RSSPage extends WebPage { public RSSPage(){ add(new sectorGrid(sector); } } public class sectorGrid extends Panel { private String param=null; private TextField input;

Re: How to use session

2009-08-28 Thread Jeremy Thomerson
So, declare the constructor that you need to pass in the variable. It's okay to have multiple constructors. You're going to have to have some way of constructing the object and giving it the search term -- Jeremy Thomerson http://www.wickettraining.com On Fri, Aug 28, 2009 at 2:58 AM, Gerald

How to use session

2009-08-27 Thread Gerald Fernando
Hello Friends, I have page in which textField and button . when submit a form (onClick ) i need to call same page and pass argument to that page. so that page will take argument from session variable.How to store and how to get that value *for loading same page*,Shall i call the page using

Re: How to use session

2009-08-27 Thread Jeremy Thomerson
Why put the variable in the session at all? Do this in your onSubmit: onSubmit() { setResponsePage(new SomePage(this.someVariable)); } -- Jeremy Thomerson http://www.wickettraining.com On Fri, Aug 28, 2009 at 12:17 AM, Gerald Fernandogerald.anto.ferna...@gmail.com wrote: Hello Friends, I