| |||||||
FRAMES NO FRAMES |
<%@ taglib prefix="ice" uri="http://www.icesoft.com/icefaces/component" %>
<anyxmlelement xmlns:ice="http://www.icesoft.com/icefaces/component" />
Tag Library Information | |
Display Name | ICE Components |
Version | 3.3.0 |
Short Name | ice |
URI | http://www.icesoft.com/icefaces/component |
Tag Summary | |
effect | Add effects to parent component |
panelBorder | The panelBorder is a layout container component that arranges and resizes specified child containers to fit in five regions: north, south, east, west, and center. These regions are defined using facets. |
column | Renders a UIComponent that represents a single column of data within a parent |
columnGroup | To get the multiple dataTable headers or footers with allowable colspan and rowspan, you need to use the columnGroup component inside the "header" or the "footer" facet of the ice:dataTable component. The "facet" can have a single child only, so one columGroup is required inside the facet. The ice:headerRow component is a valid child of the columnGroup component. <ice:dataTable .. > |
columns | The difference between the |
dataExporter | The ice:dataExporter component can be used to export the data contents of an ice:dataTable component into a variety of formats.
The outputTypeHandler attribute allows developer to define custom output formats. The label, image and renderLabelAsButton are interrelated. Their order of precedence are as follows:
|
dataPaginator | The dataPaginator component is used in conjunction with a dataTable. The dataPaginator may be used to render a set of page navigation facets and access attributes of the underlying DataModel specified in the associated dataTable. Using the dataPaginator, a dataTable containing a large DataModel can be viewed as multiple "pages" of table rows instead of as one large table. |
gMap | This component uses the version 2 of the Google Maps API. In order to use the google maps, an API key is required. The API key can be obtained from the google maps' website. You must need to specify the API key in the web.xml(e.g.) <context-param> <param-name>com.icesoft.faces.gmapKey</param-name> <param-value>ABQIAAAADlu0Z........</param-value> </context-param> |
gMapControl | This component adds the control to the ice:gMap. This component must need to be a child of ice:gMap component. (e.g.) <ice:gMap> <ice:gMapControl name="GLargeMapControl"/> <ice:gMapControl name="GScaleControl"/> </ice:gMap> |
gMapDirection | The gMapDirection component uses the google map's GDirections API to get the direction from point A to point B. This component must need to be a child of ice:gMap component. |
gMapGeoXml | This component uses google map's GGeoXml API, to support the KML and GeoRSS data formats for displaying geographic information. <ice:gMap latitude="41.875696" longitude="-87.624207" zoomLevel="11"> <ice:gMapGeoXml url="http://mapgadgets.googlepages.com/cta.kml"/> </ice:gMap> |
gMapLatLng | This component is a wrapper of google map's GLatLng API. Can be child of gMapMarker component. |
gMapLatLngs | This component can be a child of gMapMarker component and its value attribute can be a list of gMapLatLng component. |
gMapMarker | This component uses the google map's GMarker API, which displays the points on the map. To define the marker the "longitude" and the "latitude" attributes of this component can be used (e.g.) <ice:gMap> <ice:gMap> <ice:gMapMarker latitude="51" longitude="-90"> <ice:gMapLatLng latitude="51.067591" longitude="-114.084862"/> <ice:gMapLatLngs value="#{gmap.points}"/> </ice:gMapMarker> </ice:gMap> |
headerRow | This component represents a single header row. The ice:column is its valid children. |
checkbox | Render a checkbox for a selectManyCheckbox component when the layout of the selectManyCheckbox component is "spread". |
commandButton | Renders an HTML "input" element. Decode Behavior Obtain the Encode Behavior Render the clientId of the component as the value of the "name" attribute. Render the current value of the component as the value of the "value" attribute. If the "styleClass" attribute is specified, render its value as the value of the "class" attribute. |
commandLink | Render an HTML "a" anchor element that acts like a form submit button when clicked. General Behaviour Both the encode and decode behavior require the ability to get the id/name for a hidden field whose value is set by the JavaScript form submit. This name must be constructed as follows:
In the following text, this String is called hiddenFieldName. Decode Behavior Obtain the "clientId" property of the component. Obtain the Encode Behavior Render "#" as the value of the "href" attribute. Render the current value of the component as the link text if it is specified. Render javascript that is functionally equivalent to the following as the value of the "onclick" attribute:
document.forms['CLIENT_ID'].submit()" where hiddenFieldName is as described above, CLIENT_ID is the clientId of the UICommand component, PARAM*_NAME and PARAM*_VALUE are the names and values, respectively, of any nested UIParameter children. The name and the value must be URLEncoded. If the "styleClass" attribute is specified, render its value as the value of the "class" attribute. Render any non-UIParameter children as normal inside of the "a" element. These will appear as the link text. Allow the form renderer to output a single "input" element (for the entire page, regardless of how many command link components are in the page) of "type" "hidden" whose "name" is the value of hiddenFieldName, and which must not have a "value" attribute. Multiple occurrences of command link components in the tree should not cause multiple hiddenFieldName hidden fields. Allow the form renderer to output an "input" element of "type" "hidden" for each of the nested UIParameter children, taking the name property (but not the value) from each one in turn. |
dataTable | Renders an HTML "table" element compliant with the HTML 401 specification. Please consult the javadoc for Rendering the header If the If any of the child Close out the "thead" element. Rendering the footer Follow the same process as for the header, except replace "header" with "footer", "th" with "td", "thead" with "tfoot", and "headerClass" with "footerClass". Do not render any "scope" attribute for the footer. Rendering the table body Render a "tbody" element. Keep track of the result of the "rows" property on the When done rendering all the rows, set the "rowIndex" property of the |
form | Renders an HTML "form" element. Decode Behavior Obtain the Encode Behavior The value of the "method" attribute must be "post". The value of the "action" attribute must be the result of passing the view identifier of the current view to the |
graphicImage | Renders an HTML "img" element. Render the clientId as the value of the "id" attribute. Render the value of the component as the value of the "src" attribute, after passing it to the getResourceURL() method of the ViewHandler for this application, and passing the result through the encodeResourceURL() method of the ExternalContext . If present, render the value of the alt attribute as the value of the "alt" attribute. If the "styleClass" attribute is specified, render its value as the value of the "class" attribute. |
inputHidden | Renders an HTML "input" element of "type" "hidden". Obtain the Encode Behavior Render the clientId of the component as the value of the "name" attribute. Render the current value of the component as the value of the "value" attribute. |
inputSecret | Renders an HTML "input" element of "type" "password". Decode Behavior See the decode description for the Input Text renderer. Encode Behavior Render the clientId of the component as the value of the "name" attribute. Render the current value of the component as the value of the "value" attribute, if and only if the "redisplay" component attribute is the string "true". If the "styleClass" attribute is specified, render its value as the value of the "class" attribute. |
inputText | Renders an HTML "input" element of "type" "text". Obtain the Encode Behavior Render the clientId of the component as the value of the "name" attribute. Render the current value of the component as the value of the "value" attribute. If the "styleClass" attribute is specified, render its value as the value of the "class" attribute. |
inputTextarea | Renders an HTML "textarea" element. Decode Behavior See the encode description for the Input Text renderer. Encode Behavior Render the clientId as the value of the "name" attribute. Render the current value of the component inside the "textarea" element. |
message | Render a single message for a specific component. Set-up for Rendering Obtain the "summary" and "detail" properties from Rendering For the message renderer, we only render one row, for the first message. For the messages renderer, we render as many rows as we have messages. If either of the "style" or "styleClass" attributes has a non-null value (as determined above), render a "span" element, outputting the value of the "style" attribute as the the value of the "style" attribute, and outputting the value of the "styleClass" attribute as the value of the "class" attribute on the "span" element. If the |
messages | The same as for the Message renderer, but output all the messages. If the value of the "layout" attribute is "table", render nested "table", "tr", and "td" elements, in that order, otherwise, don't render the table. The component is a |
outputFormat | Render parameterized text. Obtain the |
outputLabel | Renders an HTML "label" element. Render the current value of the component as label text if it is specified. If a "for" attribute is specified, find the component specified by the value of the "for" attribute, and render its client id as the value of the "for" attribute. If "styleClass" attribute is specified, render its value as the value of the "class" attribute. |
outputLink | Render an HTML "a" anchor element. The value of the component is rendered as the value of the "href" attribute. Any child UIParameter components are appended to the String to be output as the value of the "href" attribute as query parameters before rendering. The entire "href" string must be passed through a call to the encodeResourceURL() method of the ExternalContext . The name of the UIParameter goes on the left hand side, and the value of the UIParameter on the right hand side. The name and the value must be URLEncoded. Each UIParameter instance is separated by an ampersand, as dictated in the URL spec. If the "styleClass" attribute is specified, render its value as the value of the "class" attribute. |
outputText | If the "styleClass" or "style" attributes are present, render a "span" element. If the "styleClass" attribute is present, render its value as the value of the "class" attribute. If the "style" attribute is present, pass it thru. If the "escape" attribute is not present, or it is present and its value is "true" all angle brackets should be converted to the ampersand xx semicolon syntax when rendering the value of the "value" attribute as the value of the component. If the "escape" attribute is present and is "false" the value of the component should be rendered as text without escaping. |
panelGrid | Renders an HTML "table" element, conforming to the rules in the HTML 401 specification. If the "styleClass" attribute is specified, render its value as the value of the "class" attribute. Render the pass-through attributes in the table below. Render the "header" facet, if present, inside of "thead", "tr", and "th" elements, nested in that order. If the "headerClass" attribute is specified, render its value as the value of the "class" attribute on the "th" element. Render "colgroup" as the value of the "scope" attribute. Render the value of the "columns" attribute as the value of the "colspan" attribute on the "th" element. Render the "footer" facet if present, using similar logic to the rendering of the "header", but replacing "thead" with "tfoot", "th" with "td", and "headerClass" with "footerClass". Render the children of the UIPanel component inside of a "tbody" element. Render the children based on the value of the "columns" attribute, creating a new row each time a "columns" worth of children have been rendered. Each child is rendered inside of a "td" element. If a child has "rendered==false" it is not rendered, and the column counter must not be incremented. |
panelGroup | The panelGroup component is intended for use in situations when only one UIComponent child can be nested, such as in the case of facets. The panelGroup component renders a "div" element around it's child components, outputting the value of the "style" attribute as the value of the "style" attribute, and the value of the "styleClass" attribute as the value of the "class" attribute. The panelGroup can also provide Drag & Drop functionality to it's child components. See the Drag & Drop documentation details. The panelGroup component can also be used to apply a single Effect (Fade, Show, etc.) to a set of child-components by adding the components to the panelGroup and specifying the effect on the panelGroup "effect" attribute. Note: The "position" property of the container div must need to be set to the "relative", if its "overflow" property of the css is set to "auto" or "scroll" and all the draggable panelGroups inside the container div must be using the dragOptions="dragGhost". |
radio | Render a radio button for the selectOneRadio component when the layout of the selectOneRadio component is "spread". |
selectBooleanCheckbox | Renders an HTML "input" element of type "checkbox". Decode Behavior Obtain the Encode Behavior Render the clientId of the component as the value of the "name" attribute. If the current value of the component is "true", output the "checked" attribute. If the "styleClass" attribute is specified, render its value as the value of the "class" attribute. |
selectManyCheckbox | Render an HTML checkbox list. See the "Decode Behavior for UISelectMany Components" section. Encode Behavior Render a "table" element. If the "styleClass" is specified, render the value of the "styleClass" attribute as the value of the "class" attribute on the "table" element. If the "style", "border" attributes are specified, pass them thru. If the "layout" attribute is specified, and its value is "spread", let the checkbox tag do the rendering. If the "layout" attribute is specified, and its value is "pageDirection", render the children elements vertically, otherwise horizontally, in the table. If any of the children are an instance of SelectItemGroup, render them as a nested table. Each of the children are ultimately rendered as follows. Render a "label" element. Inside of the "label", render an "input" element of "type" "checkbox" for each child component. As an exception to the general rules about how to handle the "id" attribute, render it as an attribute on the outer "table" element, the value of which is the |
selectManyListbox | Render an HTML option list. Decode Behavior This section documents the decode behavior for all renderers that handle Decode Behavior for Obtain the Decode Behavior for Obtain the Encode Behavior Render an HTML "select" element. Render the clientId of the component as the value of the "name" attribute. If the "styleClass" attribute is specified, render its value as the value of the "class" attribute on the "select" element. If the component is a Rendering the "option" elements The only valid children of this component are |
selectManyMenu | Render an HTML option list. See the "Decode Behavior for UISelectMany Components" section. Encode Behavior Render an HTML "select" element. Render the clientId of the component as the value of the "name" attribute. If the "styleClass" attribute is specified, render its value as the value of the "class" attribute on the "select" element. If the component to be rendered is a UISelectMany, render "true" as the value of the "multiple" attribute. Render "1" as the value of the "size" attribute. See the "Rendering the option elements" specification for |
selectOneListbox | Render an HTML option list. See the "Decode Behavior for UISelectOne Components" section. Encode Behavior Render an HTML "select" element. Render the clientId of the component as the value of the "name" attribute. If the "styleClass" attribute is specified, render its value as the value of the "class" attribute on the "select" element. If the component to be rendered is a UISelectMany, render "true" as the value of the "multiple" attribute. If the "size" attribute is specified, render its value as the value of the "size" attribute. Otherwise use the number of items as the value of the "size" attribute. See the "Rendering the option elements" specification for |
selectOneMenu | Render an HTML option list. See the "Decode Behavior for UISelectOne Components" section. Encode Behavior Render an HTML "select" element. Render the clientId of the component as the value of the "name" attribute. If the "styleClass" attribute is specified, render its value as the value of the "class" attribute on the "select" element. If the component to be rendered is a UISelectMany, render "true" as the value of the "multiple" attribute. Use the number of items as the value of the "size" attribute. See the "Rendering the option elements" specification for |
selectOneRadio | Render a set of html "input" elements of type "radio". See the "Decode Behavior for UISelectOne Components" section. Encode Behavior Render a "table" element. If the "styleClass" is specified, render the value of the "styleClass" attribute as the value of the "class" attribute on the "table" element. If the "style", "border" attributes are specified, pass them thru. If the "layout" attribute is specified, and its value is "spread", let the radio tag do the rendering. If the "layout" attribute is specified, and its value is "pageDirection", render the children elements vertically, otherwise horizontally, in the table. If any of the children are an instance of SelectItemGroup, render them as a nested table. Render a "label" element. Each of the children are ultimately rendered as an "input" element of "type" "radio". As an exception to the general rules about how to handle the "id" attribute, render it as an attribute on the outer "table" element, the value of which is the |
inputRichText | The ICEfaces inputRichText component uses the FCKEditor API to provide JSF based rich text component. The following steps are involved in creating the custom toolbar:
The following steps are involved in defining the custom CSS:
|
jsEventListener | The jsEventListener component allows you to capture javascript events and optionally sends a notification to server and fire an action event.
For example if you want to fire an action event in response of onchange event on the client. <ice:jsEventListener events="change" actionListener="#{textFields.eventListener}"> <h:inputText /> </ice:jsEventListener> On server side you get the following parameters, that can helps to evaluate further on server side.
Another example to use html input buttons to fire an action event and navigate to the page according to the choice. <ice:jsEventListener events="click" action="#{bean.eventAction}"> <input type="button" id="continue" value="Continue"/> <input type="button" id="cancel" value="Cancel"/> </ice:jsEventListener> public String eventAction() { Map parameter = FacesContext.getCurrentInstance().getExternalContext().getRequestParameterMap(); if ("continue".equals(parameter.get("ice.event.target"))) { return "continue"; }else if ("cancel".equals(parameter.get("ice.event.target"))) { return "cancel"; } return "noaction"; }Note: For above example navigation rule needs to be defined in faces-config.xml. Event Filtering: <ice:jsEventListener events="keydown" handler="keydownFilter" actionListener="#{bean.doSomthing}"> <h:inputText /> </ice:jsEventListener>You can capture more than one events using "," separated values (e.g) <ice:jsEventListener events="keydown, keyup" handler="eventFilter" actionListener="#{bean.doSomthing}"> <h:inputText /> </ice:jsEventListener>As there is only one handler for both events, so you will have to check for the event.type to distigushe between them or if you want to use a separate handlers you can use nested jsEventListener component (e.g.) <ice:jsEventListener events="keydown" handler="keydownFilter" actionListener="#{bean.doSomthing}"> <ice:jsEventListener events="keyup" handler="keyupFilter" actionListener="#{bean.doSomthing}"> <h:inputText /> </ice:jsEventListener> </ice:jsEventListener>There can be many uses cases, please explore and let others know. Note: The ice:jsEventListener based on the event bubbling, so it can capture events as far as its children bubbling up the events. |
loadBundle | The application of the ice:loadBundle is same as the f:loadBundle but it allows to change the messages dynamically in two ways:
|
menuBar | The menuBar component provides a robust menu system that supports:
See the menuItem component's description for more relevant information. |
menuItem | MenuItem components are the menu items contained by a menuBar. The value attribute defines the label displayed for the menuItem. The icon attribute can be used to specify an image that displays on the left side of the menuItem. The action and actionListener attributes operate in the same way os the standard component attributes of the same name. The menuItem component is only used in the static approach to defining the heirarchy of menu items. |
menuItemSeparator | This is the Menu Node Separator component. |
menuItems | This is the submenu component to use if you want to supply a (potentially) dynamic heirarchy of menuItems. |
menuPopup | A context sensitive popup menu providing popup nested child menus By default the menuPopup doesn't cause any submit when displayed by the right click, that is why its contents can be static only but it could be dynamic by just registering the displayListener on it. The displayEvent gives the target component as well as the clientId of the target component in form of contextValue, which then can be use to produce dynamic contents. |
outputChart | The outputChart component uses the JCharts open source charting utility (http://jcharts.sourceforge.net/) to create charts. All chart types are derived from the two main types:
|
outputConnectionStatus | The outputConnectionStatus component displays the information about the status of the network connection between the client browser and the server. The component displays one of 4 possible states, which are as follows. 1. Active: The connection is alive and there is a request pending. The outputConnectionStatus component provides an ideal mechanism to provide continuous real-time feedback to users of the status of their ICEfaces application. It is particularly important to inform users when the application is busy sending and receiving data in response to a user-initiated action to manage their expectations with respect to application readiness for additional user input. Generally, the outputConnectionStatus component should be located in a consistent location throughout an ICEfaces application. NOTE: A web-page may only contain a single outputConnectionStatus component. Using more than one outputConnectionStatus component on the same web page will result in erratic results. |
outputMedia | Renders an object tag and an embed tag for playing a media object. Parameter values specific to a player should be specified using <f:param>. |
outputResource | The outputResource component can be used to expose resources to the page. These resources can be rendered as links that trigger the browser to open the resource as an attachment, or open directly from the current page. Any class that implements the com.icesoft.faces.context.Resource can be used to expose the resource. |
outputStyle | The outputStyle component is used to link the desired ICEfaces theme CSS stylesheets into the page to style the ICEfaces Component Suite components. Inserting the outputStyle component into the HEAD region of a page will link both the default CSS stylesheet for the theme and optionally an additional stylesheet that alters the default styles to accommodate differences in CSS rendering in various user-agents/browsers. The additional style sheet will have a different extension for each browser.
This extension replaces the .css value of the href attribute. So when href is 'xp.css' and the page is rendered in Internet Explorer 6 or less, an additional style sheet will be included called 'xp_ie.css'. |
panelCollapsible | The panelCollapsible component is comprised of two parts: the content area, where its children can be displayed; and a header section, which can be clicked on, to cause the content area to collapse into not being visible, or expand to become visible. The panelCollapsible's state of being expanded or collapsed is fully controllable via its expanded attribute, which can be tied to a bean property through a ValueBinding. |
panelConfirmation | This component renders a popup confirmation dialog asking the user whether to cancel or continue with the operation that was requested. This dialog will be displayed immediately after the event that triggered the operation (e.g. click, Enter-key press, etc.) while preventing the application from carrying out the requested operation until it is confirmed by the user. |
panelDivider | The panelDivider component creates a spilttable panel. The position of the divider can be defined using the "dividerPosition" attribute. The orientation of the spilttable panel can be set to the vertical or the horizontal using the "orientation" attribute. The component requires two named facets ("first", "second") to define each pane. (e.g.) |
panelLayout | PanelLayout is a container used for displaying a group of components. AbsoluteLayout allow placement of components in absolute positions. A flow layout arranges components in relative alignment. |
panelPopup | The panelPopup is a container component that renders a window or panel that hovers on top of a web page. The popupPanel contains 2 regions which are defined using facets. The facet names are; header and body. |
panelSeries | The panelSeries component provides a mechanism for dynamically generating a series of repeating child-components within a panel. This component renders its child components in an iterative fashion similar to way the dataTable component renders data rows. However, the panelSeries component is more flexibile in that it can render a series of arbitrarily complex child components. The dataset can be defined and used by implementing the value and var attributes respectively. |
panelStack | The panelStack is a container component that itself contains multiple panel groups. A single contained panel group is visible at one time, filling the area covered by the panelStack component. The panel group specified in the selectPanel attribute will be visible, with the others being hidden. |
panelTab | Renders an individual Panel Tab. Must be contained within a TabbedPane. <ice:panelTab> <f:facet name="label"> <ice:panelGroup> <ice:outputText value="Tab 1"/> </ice:panelGroup> </f:facet> <ice:outputText value="Contents"/> </ice:panelTab> |
panelTabSet | The panelTabSet is a container component which itself contains one or more panelTab components, which are also container components. The panelTabSet component displays the "active" panelTab, hiding the contents of the others. Users can select which panelTab to make visible by clicking on the tab header of the panelTab that they want to display. |
panelTooltip | The panelTooltip is a container component that renders the panel as tooltip that hovers on top of an element. This component can be used with conjunction of the panelGroup. The popupTooltip contains two user defined regions which are defined using named facets. The facet names are "header" and "body". The hide functionality is controlled by the hideOn attribute. Note: The panelTooltip can be draggable as well. |
portlet | The portlet component is a container component that renders a "div" element, outputting the value of the "style" attribute as the value of the "style" attribute and the value of the "styleClass" attribute as the value of the "class" attribute. |
outputProgress | The outputProgress component can be used to report progress to users in cases where a long running server-side task is necessary. This component can be run in either of two modes; "determinate" and "indeterminate". Determinate mode should be used in cases where the number of steps or units of work in a long-running process are known. In determinate mode (default) the outputProgress component renders a progress bar that indicates the completion percentage for a task. Typically, the progress bar will gradually progress from 0 to 100 % complete in incremental steps determined by the application. Indeterminate mode should be used in cases when it is not possible to predicate how long a long-running process will take to complete, or how many steps or units of work are required to complete the task. In indeterminate mode the outputProgress component renders an animated icon or progress bar that indicates generally that activity is taking place. |
repeat | The Repeat component provides a mechanism for dynamically generating a series of repeating child-components. The component itself doesn't renderer any markup but let its child components to render in an iterative fashion similar to way the panelSeries component renders data rows. The difference between the panelSeries and the repeat component is that the panelSeries render its children inside a panel and repeat component doesn't render any markup of its own. The dataset can be defined and used by implementing the value and var attributes respectively. |
rowSelector | The Row Selector tag enables single and multiple row selection for DataTable. To add the row selection to the dataTable, the rowSelector component can be added to any column of the dataTable(e.g.) <ice:dataTable..> The row selection will fire a RowSelectorEvent which can be caught by the selectionListener on this component. The selection is based on the following two attributes:
Setting the "enhancedMultiple" to true, allows single or muliple selection using the shift or ctrl keys combination. For more detail please see the attribute specific description. Note: It is a good practice to use the immediate parameter of the rowSelector. If set to true, it will work with the results of the selection in APPLY_REQUEST_VALUE phase, before validation occurs. If set to false it will defer event processing until INVOKE_APPLICATION phase, after validation. If validation fails, selection event will not fire with immediate=false |
selectInputDate | The selectInputDate component renders a localized dateSelect. Users may select a date by clicking on a date in the displayed month. The displayed month and year can be changed using arrow buttons or dropdown lists. Optionally, the selectInputDate component may be used in popup mode. In this mode an inputText component is rendered that displays the selected date. Users may enter a date directly into the inputText component, or optionally click a button beside the inputText component to display a popup dateSelect view. Selecting a date in the dateSelect closes the popup dateSelect view and updates the selected date. In order to highlight a day, following three attributes need to be set with corresponding values:
To highlighting days in more granular fashion, above attributes can be set to defining more then one rules by separating them with : colon (e.g.) A rule can be set to defining more then one values using comma "," (e.g.) The action and actionListener will only be fired, when "enter" being pressed on a input text in a popup mode. Time Entry: When the f:convertDateTime is configured to show time, the calendar will include a time editing UI. |
selectInputText | The selectInputText component provides an inputText component enhanced with auto-complete functionality. As the user enters text into the component it provides a popup list of possible matching values that the user may select from. The component predicts a word or phrase that a user wants to type in without the user actually completely typing it in. The selectInputText component requires developers to implement the matching list search algorithm in their backing bean. The selectInputText component can generate one of two types of lists: |
setEventPhase | The Set Event Phase component allows one to specify the phase that certain events will be broadcast in, for events originating from components in its child hierarchy. The component has the following attributes
|
commandSortHeader | The commandSortHeader component is used in conjunction with a dataTable. The commandSortHeader renders a clickable column header facet allowing the user to toggle the sort order of data in the table, either ascending or descending based on the values in the column. |
treeNode | The treeNode tag provides the template that be applied in rendering each node in the backing data model. The treeNode tag supports two facets: the icon facet and the content facet. The icon facet is intended to contain a graphic image that will serve as the icon for the node it represents. This image can be customized for each node, or default icons for leaf nodes, expand branch nodes, and contracted branch nodes will be used. The content facet can contain any collection of components. For each node in the tree's backing data model, the child components of the two facets will be rendered with state retrieved from the data model as configured in the JSP by the application developer. |
tree | The tree component displays hierarchical data as a "tree" of branches and leaf nodes. Optionally, the tree may also display navigation controls for the dynamic expansion and collapse of branch nodes. Tree navigation events are available so that an application can respond to these events. Nodes may also support an action event that can be used to respond to user click events. |
panelPositioned | With the positioned panel component lists can be used to generate a series of repeating child-components within a panel. Each one of these child-components is draggable and can exchange positions with other children in the same panel as well as a child component can be moved between different positioned panels components. When a Child Component is moved the source value (java.util.List/Array ) for the positioned Panel is modified by the component to reflect the new order of the positioned panel. (e.g.) <ice:panelPositioned var="person" value="#{panelPositioned.people}" > <ice:panelGroup style="cursor:move;"> <ice:outputText value="#{person.name}"/> </ice:panelGroup> </ice:panelPositioned> |
tabChangeListener | No Description |
| |||||||
FRAMES NO FRAMES |