Hi

Did you try specifying the type of "cer" (the type of the individual
elements of the collection "cers") on the <logic:iterate> tag

some thing like this.

<logic:iterate id="cer" name="cers" type="com.xxx.xxx.CER">
<html:radio property="shipper"
             value="<%= cer.getTrackingNbr()%>"/>
Ship Date: <bean:write name="cer" property="destLocCd" />
</logic:iterate/>

I hope this MAY work.

Regards
Gopal

-----Original Message-----
From: Austin Lowry [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, August 14, 2002 11:02 AM
To: [EMAIL PROTECTED]
Subject: cannot resolve symbol from bean / radio button value iteration
problem


What I am attempting to accomplish is to display a list of radio buttons
based on entity objects I have stored in a vector. Creating the buttons
and the desired text is not a problem, but assigning a value to each of
the buttons created so that I can determine which of my entities was
selected is.

I decided to use a value from the entities as the key to the selected
radio button, but I am having difficulty setting the value parameter in
the radio tag. Here is my code:

<logic:iterate id="cer" name="cers">
<html:radio property="shipper"
             value="<%= ((CER)cer).getTrackingNbr()%>"/>
Ship Date: <bean:write name="cer" property="destLocCd" />
</logic:iterate/>

The error message I recieve tells me that the variable cer whos
getTrackingNbr I am attempting to execute cannot be resolved.

Is there somthing I need to do to make the variable cer available, or am
I just going about this the wrong way.

Thanks in advance for your time and assistance.

~Austin Lowry




--
To unsubscribe, e-mail:
<mailto:[EMAIL PROTECTED]>
For additional commands, e-mail:
<mailto:[EMAIL PROTECTED]>

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to