Skip to content

Instantly share code, notes, and snippets.

@UberNick
Created September 11, 2013 04:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save UberNick/6519305 to your computer and use it in GitHub Desktop.
Save UberNick/6519305 to your computer and use it in GitHub Desktop.
<%@include file="/libs/foundation/global.jsp"%>
Multifield Test Component<br/>
<%
// String[] images = properties.get("images", String[].class); // default is null
String[] images = properties.get("images", new String[0]); // default is empty array
for (int i = 0; i < images.length; i++) {
%>
<img src="<%= images[i] %>"></img><br/>
<%
}
%>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment