|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Object
javax.faces.component.UIComponent
org.apache.myfaces.trinidad.component.UIXComponent
org.apache.myfaces.trinidad.component.UIXComponentBase
org.apache.myfaces.trinidad.component.UIXValue
org.apache.myfaces.trinidad.component.UIXEditableValue
org.apache.myfaces.trinidad.component.UIXSelectMany
org.apache.myfaces.trinidad.component.core.input.CoreSelectManyShuttle
public class CoreSelectManyShuttle
The selectManyShuttle component provides a mechanism for selecting multiple values from a list of values by allowing the user to move items between two lists. The "value" attribute of the selectManyShuttle, like any other selectMany component, must be a List or array of values that correspond to a value of one of the contained SelectItems. If a value of one of the SelectItems is in the List or array, that item will appear in the trailing list. Looked at another way, you can change a selectManyListbox directly into a selectManyShuttle; instead of the "value" driving which items are selected in the listbox, it affects which items appear in the trailing list of the shuttle. <html:p> The selectManyShuttle does not allow for reordering; the selectOrderShuttle component adds this functionality to selectManyShuttle. selectManyShuttle also does not include automatic messaging support, unlike most other Trinidad messaging components. </html:p> <section name="Attributes"> <html:p> Each list in the shuttle has a header, the text of which can be set as the "leadingHeader" attribute and the "trailingHeader" attribute. </html:p> <html:p> Each container in the shuttle can have an area to display item descriptions below the list. To indicate whether or not a container should have such an area set the attributes <html:code>"leadingDescShown"</html:code> attribute and the <html:code>"trailingDescShown"</html:code> attribute. </html:p> <html:p> To control the display size(number of items) of the lists, the size attribute has to be specified. The size specified must be between 10 and 20 items. If the attribute is not set or has a value less than 10, the size would have a default or minimum value of 10. If the attribute value specified is more than 20 items, the size would have the maximum value of 20. </html:p> </section> <section name="Shuttle_Footers"> <html:p> The shuttle allows the user to place components - typically, buttons or icons - below each of the lists. These buttons or icons will take up only one row below the lists (no wrapping), and should have a maximum height of 26 pixels if the layout of the shuttle is to remain consistent. The buttons and icons should be placed within the shuttle as the <html:code>leadingFooter</html:code> or the <html:code>trailingFooter</html:code> facet, depending on which list the buttons should go under. Leave the appropriate facet empty if no footer is required under a list. These buttons and icons can be used to perform operations upon the shuttle using a ShuttleProxy as described below. </html:p> </section> <section name="Shuttle_Filter"> <html:p> The shuttle allows the user to place a filter above the list in the leading container. The filter is added as the <html:code>filter</html:code> facet. The filter can be used to perform operations upon the shuttle using a ShuttleProxy as described below. </html:p> </section> <section name="JavaScript_proxies"> <html:p> In some cases, developers will need to use JavaScript to manipulate or use the contents of the lists. This may be required as actions for the buttons or icons in the shuttle footers or outside the shuttle all together. Thus, a set of Javascript utility methods are available that operate on the lists. These are located in the shuttle.js Javascript library, which is automatically loaded if you use the shuttle. </html:p> <html:p> These methods can be accessed by creating a <html:code>ShuttleProxy</html:code> instance based on the shuttle client ID and form. <html:pre> // create the proxy object var proxy2 = new ShuttleProxy("testShuttle2", "testForm2"); </html:pre> </html:p> <html:p> Once the proxy is created, you can use it to gain information about the lists or to manipulate the lists in the shuttle. The proxy provides the following functions: <html:ul> <html:li><html:code>move(fromLeadingList, allItems)</html:code> : moves items from one list to the other. If <html:code>fromLeadingList</html:code> is true, the items move from the leading list to the trailing list. If <html:code>fromLeadingList</html:code> is false, the items move the opposite direction. If <html:code>allItems</html:code> is true, all the items are moved, otherwise only the selected items are moved.</html:li> <html:li><html:code>reorderList(down, allTheWay, leadingList)</html:code> : reorders a list. If <html:code>down</html:code> is true, the items move down in the list, otherwise they move up. If <html:code>allTheWay</html:code> is true, the items move all the way to the top or bottom of the list depending on the value of <html:code>down</html:code>. If <html:code>leadingList</html:code> is true, the leading list is reordered, otherwise the trailing list is reordered.</html:li> <html:li><html:code>getItems(leadingList)</html:code> : returns an array of <html:code>option</html:code> objects that make up a list. If <html:code>leadingList</html:code> is true, the array has the leading list's options, otherwise the items are from the trailing list. Note that the array will not include the horizontal bar at the end of the lists.</html:li> <html:li><html:code>getSelectedItems(leadingList)</html:code> : returns an array of <html:code>option</html:code> objects that are selected in a list. If <html:code>leadingList</html:code> is true, the array has the leading list's options, otherwise the items are from the trailingList. Note that the array will not include the horizontal bar at the end of the lists.</html:li> <html:li><html:code>getItemCount(leadingList)</html:code> : returns the number of items in a list. If <html:code>leadingList</html:code> is true, the number returned is the number of items in the leading list. Otherwise, the number returned is the number of items in the trailing list. Note that the horizontal bar at the end of the lists is not included in this count -- you only get the number of actual items.</html:li> <html:li><html:code>getSelectedItemCount(leadingList)</html:code> : returns the number of selected items in a list. If <html:code>leadingList</html:code> is true, the number returned is the number of selected items in the leading list. Otherwise, the number returned is the number of selected items in the trailing list. Note that the horizontal bar at the end of the lists is not included in this count -- you only get the number of actual items.</html:li> <html:li><html:code>addItem(leadingList, index, text, value, description)</html:code> : adds an item at the given index to a list. The item is added to the leading list if <html:code>leadingList</html:code> is true, otherwise it is added to the trailing list. The <html:code>index</html:code> should be 0 based. Thus, to insert an item at the end of a list, set <html:code>index</html:code> to <html:code>shuttleProxy.getItemCount(leadinglist)</html:code>. The <html:code>text</html:code> parameter specifies the display text for the item, while the <html:code>value</html:code> parameter specifies the value that represents this item upon form submission. The <html:code>description</html:code> parameter specifies a description of the item. The <html:code>description</html:code> parameter can be omitted.</html:li> <html:li><html:code>deleteItemByValue(leadingList, value)</html:code> : deletes an item from a list. The item is deleted from the leading list if <html:code>leadingList</html:code> is true, otherwise it is deleted from the trailing list. The item deleted is the first item with the value (not text) of <html:code>value</html:code>.</html:li> <html:li><html:code>deleteSelectedItems(leadingList)</html:code> : deletes items from a list. The items are deleted from the leading list if <html:code>leadingList</html:code> is true, otherwise they are deleted from the trailing list. The items deleted are the items that are selected in the appropriate list.</html:li> <html:li><html:code>reset()</html:code> : reset the shuttle to its initial state.</html:li> </html:ul> </html:p> </section>
| Type | Phases | Description |
|---|---|---|
javax.faces.event.ValueChangeEvent |
Process Validations Apply Request Values |
The valueChange event is delivered when the value attribute is changed. |
org.apache.myfaces.trinidad.event.AttributeChangeEvent |
Invoke Application Apply Request Values |
Event delivered to describe an attribute change. Attribute change events are not delivered for any programmatic change to a property. They are only delivered when a renderer changes a property without the application's specific request. An example of an attribute change event might include the width of a column that supported client-side resizing. |
| Fields inherited from class org.apache.myfaces.trinidad.component.UIXSelectMany |
|---|
REQUIRED_MESSAGE_ID, UNSUPPORTED_MODEL_TYPE_MESSAGE_ID |
| Fields inherited from class org.apache.myfaces.trinidad.component.UIXEditableValue |
|---|
CONVERSION_MESSAGE_ID, IMMEDIATE_KEY, LOCAL_VALUE_SET_KEY, REQUIRED_KEY, REQUIRED_MESSAGE_DETAIL_KEY, SUBMITTED_VALUE_KEY, TRINIDAD_BEAN_VALIDATION_AVAILABLE, TRINIDAD_EMPTY_VALUES_AS_NULL_PARAM_NAME, VALID_KEY, VALIDATE_EMPTY_FIELDS_PARAM_NAME, VALIDATOR_KEY, VALIDATORS_KEY, VALUE_CHANGE_LISTENER_KEY |
| Fields inherited from class org.apache.myfaces.trinidad.component.UIXValue |
|---|
CONVERTER_KEY, VALUE_KEY |
| Fields inherited from class org.apache.myfaces.trinidad.component.UIXComponentBase |
|---|
BINDING_KEY, ID_KEY, RENDERED_KEY, RENDERER_TYPE_KEY, TRANSIENT_KEY |
| Fields inherited from class javax.faces.component.UIComponent |
|---|
ATTRS_WITH_DECLARED_DEFAULT_VALUES, BEANINFO_KEY, bindings, COMPOSITE_COMPONENT_TYPE_KEY, COMPOSITE_FACET_NAME, CURRENT_COMPONENT, CURRENT_COMPOSITE_COMPONENT, FACETS_KEY, HONOR_CURRENT_COMPONENT_ATTRIBUTES_PARAM_NAME, VIEW_LOCATION_KEY |
| Constructor Summary | |
|---|---|
|
CoreSelectManyShuttle()Construct an instance of the CoreSelectManyShuttle. |
protected |
CoreSelectManyShuttle(String rendererType)Construct an instance of the CoreSelectManyShuttle. |
| Method Summary | |
|---|---|
void |
addClientBehavior(String eventName, javax.faces.component.behavior.ClientBehavior behavior)Utility method to assist sub-classes in the implementation of the ClientBehaviorHolder interface. |
protected FacesBean.Type |
getBeanType() |
Map<String,List<javax.faces.component.behavior.ClientBehavior>> |
getClientBehaviors()Utility method to assist sub-classes in the implementation of the ClientBehaviorHolder interface. |
String |
getDefaultEventName()Utility method to assist sub-classes in the implementation of the ClientBehaviorHolder interface. |
Collection<String> |
getEventNames() |
String |
getFamily() |
javax.faces.component.UIComponent |
getFilter()the filter above the leading list. |
String |
getInlineStyle()Gets the CSS styles to use for this component. |
String |
getLabel()Gets the label for the shuttle that is used to identify the component only when displaying error messages. |
javax.faces.component.UIComponent |
getLeadingFooter()the footer of buttons/images under the leading list. |
String |
getLeadingHeader()Gets the header of the leading list of the shuttle. |
String |
getOnblur()Gets the event handler for the component losing the focus. |
String |
getOnchange()Gets event handler for when the value is changed. |
String |
getOnclick()Gets an onclick Javascript handler. |
String |
getOndblclick()Gets an ondblclick Javascript handler. |
String |
getOnfocus()Gets the event handler for the component gaining the focus. |
String |
getOnkeydown()Gets an onkeydown Javascript handler. |
String |
getOnkeypress()Gets an onkeypress Javascript handler. |
String |
getOnkeyup()Gets an onkeyup Javascript handler. |
String |
getOnmousedown()Gets an onmousedown Javascript handler. |
String |
getOnmousemove()Gets an onmousemove Javascript handler. |
String |
getOnmouseout()Gets an onmouseout Javascript handler. |
String |
getOnmouseover()Gets an onmouseover Javascript handler. |
String |
getOnmouseup()Gets an onmouseup Javascript handler. |
String[] |
getPartialTriggers()Gets the IDs of the components that should trigger a partial update. |
String |
getShortDesc()Gets The short description of the component. |
int |
getSize()Gets the display size(number of items) of the lists. |
String |
getStyleClass()Gets a CSS style class to use for this component. |
javax.faces.component.UIComponent |
getTrailingFooter()the footer of buttons/images under the trailing list. |
String |
getTrailingHeader()Gets the header of the trailing list of the shuttle. |
boolean |
isDisabled()Gets whether the element is disabled. |
boolean |
isLeadingDescShown()Gets whether or not the leading list has an area to display descriptions. |
boolean |
isReadOnly()Gets whether the element is read-only. |
boolean |
isTrailingDescShown()Gets whether or not the trailing list has an area to display descriptions. |
boolean |
isValuePassThru()Gets whether or not the values are passed through to the client. |
void |
setDisabled(boolean disabled)Sets whether the element is disabled. |
void |
setFilter(javax.faces.component.UIComponent filterFacet)the filter above the leading list. |
void |
setInlineStyle(String inlineStyle)Sets the CSS styles to use for this component. |
void |
setLabel(String label)Sets the label for the shuttle that is used to identify the component only when displaying error messages. |
void |
setLeadingDescShown(boolean leadingDescShown)Sets whether or not the leading list has an area to display descriptions. |
void |
setLeadingFooter(javax.faces.component.UIComponent leadingFooterFacet)the footer of buttons/images under the leading list. |
void |
setLeadingHeader(String leadingHeader)Sets the header of the leading list of the shuttle. |
void |
setOnblur(String onblur)Sets the event handler for the component losing the focus. |
void |
setOnchange(String onchange)Sets event handler for when the value is changed. |
void |
setOnclick(String onclick)Sets an onclick Javascript handler. |
void |
setOndblclick(String ondblclick)Sets an ondblclick Javascript handler. |
void |
setOnfocus(String onfocus)Sets the event handler for the component gaining the focus. |
void |
setOnkeydown(String onkeydown)Sets an onkeydown Javascript handler. |
void |
setOnkeypress(String onkeypress)Sets an onkeypress Javascript handler. |
void |
setOnkeyup(String onkeyup)Sets an onkeyup Javascript handler. |
void |
setOnmousedown(String onmousedown)Sets an onmousedown Javascript handler. |
void |
setOnmousemove(String onmousemove)Sets an onmousemove Javascript handler. |
void |
setOnmouseout(String onmouseout)Sets an onmouseout Javascript handler. |
void |
setOnmouseover(String onmouseover)Sets an onmouseover Javascript handler. |
void |
setOnmouseup(String onmouseup)Sets an onmouseup Javascript handler. |
void |
setPartialTriggers(String[] partialTriggers)Sets the IDs of the components that should trigger a partial update. |
void |
setReadOnly(boolean readOnly)Sets whether the element is read-only. |
void |
setShortDesc(String shortDesc)Sets The short description of the component. |
void |
setSize(int size)Sets the display size(number of items) of the lists. |
void |
setStyleClass(String styleClass)Sets a CSS style class to use for this component. |
void |
setTrailingDescShown(boolean trailingDescShown)Sets whether or not the trailing list has an area to display descriptions. |
void |
setTrailingFooter(javax.faces.component.UIComponent trailingFooterFacet)the footer of buttons/images under the trailing list. |
void |
setTrailingHeader(String trailingHeader)Sets the header of the trailing list of the shuttle. |
void |
setValuePassThru(boolean valuePassThru)Sets whether or not the values are passed through to the client. |
| Methods inherited from class org.apache.myfaces.trinidad.component.UIXSelectMany |
|---|
compareValues, getRequiredMessageKey, isEmpty, validateValue |
| Methods inherited from class org.apache.myfaces.trinidad.component.UIXValue |
|---|
getConverter, getLocalValue, getValue, setConverter, setValue |
| Methods inherited from class javax.faces.component.UIComponent |
|---|
encodeAll, getClientId, getCompositeComponentParent, getContainerClientId, getCurrentComponent, getCurrentCompositeComponent, getNamingContainer, getResourceBundleMap, getTransientStateHelper, getTransientStateHelper, isCompositeComponent, isInView, popComponentFromEL, processEvent, pushComponentToEL, restoreTransientState, saveTransientState, setInView |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface javax.faces.component.ValueHolder |
|---|
getConverter, getLocalValue, getValue, setConverter, setValue |
| Field Detail |
|---|
public static final FacesBean.Type TYPE
public static final PropertyKey VALUE_PASS_THRU_KEY
public static final PropertyKey READ_ONLY_KEY
public static final PropertyKey DISABLED_KEY
public static final PropertyKey ONCHANGE_KEY
public static final PropertyKey INLINE_STYLE_KEY
public static final PropertyKey STYLE_CLASS_KEY
public static final PropertyKey SHORT_DESC_KEY
public static final PropertyKey PARTIAL_TRIGGERS_KEY
public static final PropertyKey ONCLICK_KEY
public static final PropertyKey ONDBLCLICK_KEY
public static final PropertyKey ONMOUSEDOWN_KEY
public static final PropertyKey ONMOUSEUP_KEY
public static final PropertyKey ONMOUSEOVER_KEY
public static final PropertyKey ONMOUSEMOVE_KEY
public static final PropertyKey ONMOUSEOUT_KEY
public static final PropertyKey ONKEYPRESS_KEY
public static final PropertyKey ONKEYDOWN_KEY
public static final PropertyKey ONKEYUP_KEY
public static final PropertyKey ONBLUR_KEY
public static final PropertyKey ONFOCUS_KEY
public static final PropertyKey SIZE_KEY
public static final PropertyKey LEADING_HEADER_KEY
public static final PropertyKey TRAILING_HEADER_KEY
public static final PropertyKey LEADING_DESC_SHOWN_KEY
public static final PropertyKey TRAILING_DESC_SHOWN_KEY
public static final PropertyKey LABEL_KEY
public static final String FILTER_FACET
public static final String LEADING_FOOTER_FACET
public static final String TRAILING_FOOTER_FACET
public static final String COMPONENT_FAMILY
public static final String COMPONENT_TYPE
| Constructor Detail |
|---|
public CoreSelectManyShuttle()
protected CoreSelectManyShuttle(String rendererType)
| Method Detail |
|---|
public final javax.faces.component.UIComponent getFilter()
public final void setFilter(javax.faces.component.UIComponent filterFacet)
public final javax.faces.component.UIComponent getLeadingFooter()
public final void setLeadingFooter(javax.faces.component.UIComponent leadingFooterFacet)
public final javax.faces.component.UIComponent getTrailingFooter()
public final void setTrailingFooter(javax.faces.component.UIComponent trailingFooterFacet)
public final boolean isValuePassThru()
public final void setValuePassThru(boolean valuePassThru)
valuePassThru - the new valuePassThru valuepublic final boolean isReadOnly()
public final void setReadOnly(boolean readOnly)
readOnly - the new readOnly valuepublic final boolean isDisabled()
public final void setDisabled(boolean disabled)
disabled - the new disabled valuepublic final String getOnchange()
public final void setOnchange(String onchange)
onchange - the new onchange valuepublic final String getInlineStyle()
public final void setInlineStyle(String inlineStyle)
inlineStyle - the new inlineStyle valuepublic final String getStyleClass()
public final void setStyleClass(String styleClass)
styleClass - the new styleClass valuepublic final String getShortDesc()
public final void setShortDesc(String shortDesc)
shortDesc - the new shortDesc valuepublic final String[] getPartialTriggers()
This component will listen on the trigger components. If one of the trigger components receives an event that will cause it to update in some way, this component will request to be updated too.
Separate multiple triggers with a space. e.g., partialTriggers="cmp1 cmp2"
Identifiers must account for NamingContainers. You can use a single colon to start the search from the root, or use multiple colons to move up through the NamingContainer. For example, "::" will pop out of this component's naming container (it pops out of itself if it is a naming container), ":::" will pop out of two naming containers, etc. The search for the partialTrigger begins from there. e.g., partialTriggers=":::commandButton1" the search begins for the component with id = commandButton1 after popping out of two naming containers relative to this component. To go into naming containers, you separate the naming containers with ':', e.g.,partialTriggers= "nc1:nc2:nc3:componentId".
public final void setPartialTriggers(String[] partialTriggers)
This component will listen on the trigger components. If one of the trigger components receives an event that will cause it to update in some way, this component will request to be updated too.
Separate multiple triggers with a space. e.g., partialTriggers="cmp1 cmp2"
Identifiers must account for NamingContainers. You can use a single colon to start the search from the root, or use multiple colons to move up through the NamingContainer. For example, "::" will pop out of this component's naming container (it pops out of itself if it is a naming container), ":::" will pop out of two naming containers, etc. The search for the partialTrigger begins from there. e.g., partialTriggers=":::commandButton1" the search begins for the component with id = commandButton1 after popping out of two naming containers relative to this component. To go into naming containers, you separate the naming containers with ':', e.g.,partialTriggers= "nc1:nc2:nc3:componentId".
partialTriggers - the new partialTriggers valuepublic final String getOnclick()
public final void setOnclick(String onclick)
onclick - the new onclick valuepublic final String getOndblclick()
public final void setOndblclick(String ondblclick)
ondblclick - the new ondblclick valuepublic final String getOnmousedown()
public final void setOnmousedown(String onmousedown)
onmousedown - the new onmousedown valuepublic final String getOnmouseup()
public final void setOnmouseup(String onmouseup)
onmouseup - the new onmouseup valuepublic final String getOnmouseover()
public final void setOnmouseover(String onmouseover)
onmouseover - the new onmouseover valuepublic final String getOnmousemove()
public final void setOnmousemove(String onmousemove)
onmousemove - the new onmousemove valuepublic final String getOnmouseout()
public final void setOnmouseout(String onmouseout)
onmouseout - the new onmouseout valuepublic final String getOnkeypress()
public final void setOnkeypress(String onkeypress)
onkeypress - the new onkeypress valuepublic final String getOnkeydown()
public final void setOnkeydown(String onkeydown)
onkeydown - the new onkeydown valuepublic final String getOnkeyup()
public final void setOnkeyup(String onkeyup)
onkeyup - the new onkeyup valuepublic final String getOnblur()
public final void setOnblur(String onblur)
onblur - the new onblur valuepublic final String getOnfocus()
public final void setOnfocus(String onfocus)
onfocus - the new onfocus valuepublic final int getSize()
public final void setSize(int size)
size - the new size valuepublic final String getLeadingHeader()
public final void setLeadingHeader(String leadingHeader)
leadingHeader - the new leadingHeader valuepublic final String getTrailingHeader()
public final void setTrailingHeader(String trailingHeader)
trailingHeader - the new trailingHeader valuepublic final boolean isLeadingDescShown()
public final void setLeadingDescShown(boolean leadingDescShown)
leadingDescShown - the new leadingDescShown valuepublic final boolean isTrailingDescShown()
public final void setTrailingDescShown(boolean trailingDescShown)
trailingDescShown - the new trailingDescShown valuepublic final String getLabel()
public final void setLabel(String label)
label - the new label valuepublic String getDefaultEventName()
UIXComponentBaseClientBehaviorHolder interface.
This method must only be called by classes that implement the interface, doing otherwise will result in an exception.
getDefaultEventName in interface javax.faces.component.behavior.ClientBehaviorHoldergetDefaultEventName in class UIXComponentBaseClientBehaviorHolder.getDefaultEventName()public Collection<String> getEventNames()
getEventNames in interface javax.faces.component.behavior.ClientBehaviorHolderpublic Map<String,List<javax.faces.component.behavior.ClientBehavior>> getClientBehaviors()
UIXComponentBaseClientBehaviorHolder interface.
This method must only be called by classes that implement the interface, doing otherwise will result in an exception.
getClientBehaviors in interface javax.faces.component.behavior.ClientBehaviorHoldergetClientBehaviors in class UIXComponentBaseClientBehaviorHolder.getClientBehaviors()
public void addClientBehavior(String eventName,
javax.faces.component.behavior.ClientBehavior behavior)
UIXComponentBaseClientBehaviorHolder interface.
This method must only be called by classes that implement the interface, doing otherwise will result in an exception.
addClientBehavior in interface javax.faces.component.behavior.ClientBehaviorHolderaddClientBehavior in class UIXComponentBaseeventName - The event namebehavior - The behavior to addClientBehaviorHolder.addClientBehavior(String, ClientBehavior)public String getFamily()
getFamily in class UIXSelectManyprotected FacesBean.Type getBeanType()
getBeanType in class UIXSelectMany
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
Copyright © 2001-2013 The Apache Software Foundation. All Rights Reserved.