posted 15 years ago
Hi,
I am displaying a hashmap from my form bean and then the user has the option to select any value and
corresponding data related to that value will be displayed to the user on the next page.
My problem is since the values are being displayed in hashmap, how do i knw which value the user has selected
without using a radio or a checkbox button.
<logic:iterate id="iterateArchiveData" name="FileUpload"
property="archiveData">
<html:link page="/archivePublication.do" onclick="archive()">
<bean:write name="iterateArchiveData" property="key" /></html:link>
(<bean:write name="iterateArchiveData" property="value" />)
</logic:iterate>
archiveData is the hashmap. what code to write in archive() so as to find out the key that the user has clicked.