I need to display all the elements in the map, the key
& value pairs. Till here it's fine.
Evrything works fine except the <html:link> tag.
When I click on "view", the "key" of the map has to be
passed as parameter.
I am not able to get the syntax right for passing the
parameter.
Thanks.
Here is my code snippet.
<logic:iterate name="varAssumptionsForm"
property="varAssumptionsSettingsMap" id="map">
<tr>
<td>
<bean:write name="map" property="key"/>
</TD>
<td>
<bean:write name="map" property="value"/>
</TD>
<TD>
<html:link onclick="Javascript:doView();" name="map"
paramId="filename" paramName="key"> View </html:link>
</TD>
</TR>
</logic:iterate>
function doView()
{
document.forms[0].target = "";
document.forms[0].method = "POST";
document.forms[0].action =
"varAssumptions.do?action=view";
document.forms[0].submit();
}
This is sort of urgent, Any help would be appreciated.
__________________________________
Do you Yahoo!?
Yahoo! Mail Address AutoComplete - You start. We finish.
http://promotions.yahoo.com/new_mail
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]