1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles" %>
<%--
Tabs Layout .
This layout allows to render several tiles in a tabs fashion.
@param tabList A list of available tabs. We use MenuItem to carry data (name, body, icon, ...)
@param selectedIndex Index of default selected tab
@param parameterName Name of parameter carrying selected info in http request.
--%>
<%--
Use tiles attributes, and declare them as page java variable.
These attribute must be passed to the tile.
--%>
<tiles:useAttribute name="parameterName" classname="java.lang.String" />
<tiles:useAttribute id="selectedIndexStr" name="selectedIndex" ignore="true" classname="java.lang.String" />
<tiles:useAttribute name="tabList" classname="java.util.List" />
<%
String selectedColor="#98ABC7";
String notSelectedColor="#C0C0C0";
int index = 0; // Loop index
int selectedIndex = 0;
// Check if selected come from request parameter
try {
selectedIndex = Integer.parseInt(selectedIndexStr);
selectedIndex = Integer.parseInt(request.getParameter( parameterName ));
}
catch( java.lang.NumberFormatException ex )
{ // do nothing
}
// Check selectedIndex bounds
if( selectedIndex < 0 || selectedIndex >= tabList.size() ) selectedIndex = 0;
String selectedBody = ((org.apache.struts.tiles.beans.MenuItem)tabList.get(selectedIndex)).getLink(); // Selected body
%>
<table border="0" cellspacing="0" cellpadding="0">
<%-- Draw tabs --%>
<tr>
<td width="10"> </td>
<td>
<table border="0" cellspacing="0" cellpadding="5">
<tr>
<logic:iterate id="tab" name="tabList" type="org.apache.struts.tiles.beans.MenuItem" >
<% // compute href
String href = request.getRequestURI() + "?"+parameterName + "=" + index;
// Don't add request URI prefix , but let the client compute the original URL
// This allows to use a Struts action as page URL, and perform a forward.
// Bug reported by Don Peterkofsky
//String href = "" + "?"+parameterName + "=" + index;
String color = notSelectedColor;
if( index == selectedIndex )
{
selectedBody = tab.getLink();
color = selectedColor;
} // enf if
index++;
%>
<td bgcolor="<%=color%>">
<a href="<%=href%>" ><%=tab.getValue()%></a>
</td>
<td width="1" ></td>
</logic:iterate>
</tr>
</table>
</td>
<td width="10" > </td>
</tr>
<tr>
<td height="5" bgcolor="<%=selectedColor%>" colspan="3" > </td>
</tr>
<%-- Draw body --%>
<tr>
<td width="10" bgcolor="<%=selectedColor%>"> </td>
<td>
<tiles:insert name="<%=selectedBody%>" flush="true" />
</td>
<td width="10" bgcolor="<%=selectedColor%>"> </td>
</tr>
<tr>
<td height="5" bgcolor="<%=selectedColor%>" colspan="3" > </td>
</tr>
</table>
|