Skip to content

Instantly share code, notes, and snippets.

@catm705
Created November 1, 2016 14:56
Show Gist options
  • Save catm705/604d4cfdad2d4fe2be4ebbab7ebe368a to your computer and use it in GitHub Desktop.
Save catm705/604d4cfdad2d4fe2be4ebbab7ebe368a to your computer and use it in GitHub Desktop.
Struts iterator over Map (key, value)
<s:elseif test="phasesMap">
<s:iterator value="phasesMap">
<h3><s:property value="key" /></h3>
<table>
<s:iterator value="value">
<tr><td><s:property value="title" /></td></tr>
</s:iterator>
</table>
</s:iterator>
</s:elseif>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment