blob: bf44b0b8d05644f202f2553f99f263b66dca068b [file] [log] [blame]
<%--
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
--%>
<%@ taglib uri="http://myfaces.apache.org/tobago/sandbox" prefix="tcs" %>
<%@ taglib uri="http://myfaces.apache.org/tobago/component" prefix="tc" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<f:view>
<tc:loadBundle basename="demo" var="bundle"/>
<tc:page label="Sandbox - SelectManyShuttle" width="500px" height="400px">
<f:facet name="layout">
<tc:gridLayout margin="10px" rows="*"/>
</f:facet>
<tc:box label="SelectManyShuttle">
<f:facet name="layout">
<tc:gridLayout columns="*" rows="*;25px"/>
</f:facet>
<tc:selectManyShuttle value="#{controller.shuffleValue}"
unselectedLabel="Available Soups" selectedLabel="Selected Soups">
<f:selectItem itemValue="suppe" itemLabel="suppe" />
<f:selectItem itemValue="soup" itemLabel="soup" />
<f:selectItem itemValue="soupe" itemLabel="soupe" />
</tc:selectManyShuttle>
<tc:panel>
<f:facet name="layout">
<tc:gridLayout columns="*;100px" rows="*"/>
</f:facet>
<tc:panel/>
<tc:button action="#{controller.submit}" label="Submit" />
</tc:panel>
</tc:box>
</tc:page>
</f:view>