%--
--
-- Required Parameters:
-- * label - The description that will be used to identfy the control.
-- * name - The name of the attribute to put and pull the result from.
-- Equates to the NAME parameter of the HTML tag SELECT.
-- * list - Iterator that will provide the options for the control.
-- Equates to the HTML OPTION tags in the SELECT.
-- * listKey - Where to get the values for the OPTION tag. Equates to
-- the VALUE parameter of the OPTION tag.
-- * listValue - The value displayed by the control. Equates to the body
-- of the HTML OPTION tag.
-- * listClass - The value displayed by the control. Equates to the class
-- of the HTML OPTION tag which is used in the cascading functionality.
-- * cascadeFrom - The name of the select which causes this select to cascade, there must
be a relationship between this named elements values and the classes used
in the options of this SELECT tag.
--%>
<%@ taglib uri="webwork" prefix="webwork" %>
<%
Integer counter = (Integer) request.getAttribute("summaryCounter");
if (counter != null)
{
int i = counter.intValue();
int value = i + 1;
request.setAttribute("summaryCounter", new Integer(value));
}
%>
' id='_select'>
' class=''
SELECTED
>
_summary">