want help in storing the drop down values in the session values should be what we selected

2009-04-20 Thread Geeta Madhavi
Hi, I what help for i have two drop downs where i select the values now the values which i select those values should be stored in the session and those values should be called in the next page. the both drop downs values come from database and values in the second drop down changes on the

Re: want help in storing the drop down values in the session values should be what we selected

2009-04-20 Thread Martin Makundi
YourSession extends WebSession { public final static String MY_VARIABLE = myVariable; private MyDropdonVariable myVariable; } MyPage extends WebPage { add(new DropDownChoice(wicket:id, new PropertyModel(this, session. + YourSession.MY_VARIABLE)); } This should do.. and you can get your