|
hi all,
i have multiple params in query string to go when
clicked on a link.
i have gone through the user archive and found
that we need to maintain a hashmap sought of thing.
as i have a link in each row, the values differ
for each link, so i have a vector of hashmaps.
i am able to form the querystring but the problem
is to iterate thru the vector as this hashmap vector is in another
iteration.
it is like this
<logic:iterate id="myCollectionElement"
name="buildData"
property="build">
<tr> <logic:iterate id="queryCollection" name="buildData" property="query" > --- this will create problems <td> <html:link page="/xxx" name="queryCollection" target="new">click</html:link> </td>
</logic:iterate>
<td>
<bean:write name="myCollectionElement"
property="versionNo"/>
</td>
</tr>
</logic:iterate>
i tried length and offset of iterate but couldn't
make it work.
has anyone tried this???
thanks,
rama.
|

