| Author |
LabelValueBean in struts
|
Bobby Sands
Greenhorn
Joined: May 21, 2006
Posts: 3
|
|
Can any one please help me out. I have a list of labelValueBean, i.e. Which is used to populate the values in a drop down box. I want to display this selected value in a printer Friendly page. I am getting only the 'key' from the labelvaluebean, how can I get the actual value using bean:write Thanks, Bobby.
|
 |
Merrill Higginson
Ranch Hand
Joined: Feb 15, 2005
Posts: 4864
|
|
The LavelValue bean does not extend java.util.Map, so it has no lookup function. If you want to be able to lookup the value from the key, use HashMap, or Treemap if you want the map to be in order by key. Use the key for the value and the value for the label. In your regular JSP, you can represent it like this: Then in the printable version you can write: <c ut value="${ssapcontractType[id_typ_cntr]}" /> [ July 09, 2006: Message edited by: Merrill Higginson ]
|
Merrill
Consultant, Sima Solutions
|
 |
 |
|
|
subject: LabelValueBean in struts
|
|
|