I need to generate unique id attributes within the struts iterator on the lines of
<div id="divId1"/>
<div id="divId2"/>
etc, etc.
I've tried
<s:iterator value="myListFunction" status="#status">
<s:set var="uniqueId" value="divId#status.count/>
<s:div id="%{uniqueId}/>
</s:iterator>
and variations of the above, but nothing seems to work. Could someone point me in the right direction please