| Author |
Retaining selected values in a portlet
|
yudi raj
Greenhorn
Joined: Nov 11, 2011
Posts: 12
|
|
I have few states listed in a drop down menu in a portlet. After clicking on a state, the portlet processes the action method and displays their cities. I have linked the cities with states through SQL. However, when the city is loaded, I need the state value to remain selected. Here is my code
code from processAction method
----------------------------------------
I need to know how would I keep the state as selected after the portlet had loaded cities. I know it had got to do something with boolean flags but I really don't know how to approach the problem. Also, after iterating through cities, I need the first value of the city to be selected. Further, after clicking on a city and submitting, both city and state value should remain selected with previously selected values. Thanks in advance.
|
 |
Ashish Sarin
author
Ranch Hand
Joined: Nov 20, 2000
Posts: 403
|
|
Hi Uday,
I would suggest that you look at actionScopedRequestAttributes container-runtime option to retain values. Also, I would recommend using something like Spring Portlet MVC and Spring form tag library to simplify developing your portlets.
regards
ashish
|
Author of
Getting started with Spring Framework
Portlets in Action
Spring Roo 1.1 Cookbook
Portlets blog – Spring Roo blog
|
 |
 |
|
|
subject: Retaining selected values in a portlet
|
|
|