|
|
|
|
<%
for (int i = 0; i < column1.size(); i++) {
%>
<%=column1.get(i)%> |
<%=column2.get(i)%> |
<%=column3.get(i)%> |
<% if(target.equals("")){ %>
|
<% }else{ %>
<%=target%> |
<% } %>
<%
}
// Column Size is Null
ServletContext servletContext = (ServletContext) pageContext.getServletContext();
MessageResources messages = (MessageResources) servletContext.getAttribute(org.apache.struts.Globals.MESSAGES_KEY);
if (column1.size() == 0) {
String nonefound = messages.getMessage(request.getLocale(), "Persistence.none");
out.println("" + nonefound + " | ");
}
%>
|
<%
} else {
%>