<%-- * Copyright by Intland Software * * All rights reserved. * * This software is the confidential and proprietary information * of Intland Software. ("Confidential Information"). You * shall not disclose such Confidential Information and shall use * it only in accordance with the terms of the license agreement * you entered into with Intland. * * $Revision$ $Date$ --%> <%-- jsp fragments shows working set selector combobox parameters: param.commandName The command bean's name which contains the "activatedSelector" property for holding the selected workingset. --%> <%@ taglib uri="jstl-c" prefix="c" %> <%@ taglib uri="jstl-fn" prefix="fn" %> <%@ taglib uri="jstl-fmt" prefix="fmt" %> <%@ taglib uri="http://www.springframework.org/tags/form" prefix="form" %> <%@ taglib uri="http://www.springframework.org/tags" prefix="spring" %> <%@ taglib uri="acltaglib" prefix="acl" %> <%@ taglib uri="uitaglib" prefix="ui" %> <%@ page import="com.intland.codebeamer.controller.workingset.WorkingSetSelectorSupport"%> <% pageContext.setAttribute("SELECTOR_ALL_PROJECTS", WorkingSetSelectorSupport.SELECTOR_ALL_PROJECTS); pageContext.setAttribute("SELECTOR_I_MEMBER", WorkingSetSelectorSupport.SELECTOR_I_MEMBER); pageContext.setAttribute("SELECTOR_COMPOUND", WorkingSetSelectorSupport.SELECTOR_COMPOUND); %> Working Set: <%-- Build the list of activated items --%> All Projects I'm a Member <% String commandName = (String) pageContext.findAttribute("commandName"); Object command = pageContext.findAttribute(commandName); pageContext.setAttribute("command", command); %>   Customize...