Tag library reference for the following tag libraries:
A set of Components that are not dependant on a specific render-kit.
Namespace definition: xmlns:v="http://rcfaces.org/core"
Tags
Required attributes are marked with a*
<p>The accelerator Component is a non-visual component.</p> <p>It allows to associate an accelerator key to an action or another component.</p> <p>The accelerator Component has the following capabilities : <ul> <li>Key pressed</li> <li>Association to another component</li> </ul> </p>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| action | A string that indicates the url to activate on the server when the component is actionned through a key mapping on the faces config file. | String |
| actionListener | Executed when the the component is activated by the user. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| for | A component's id that express the link between the two components. | String |
| forItemValue | A string specifying a value to select in the component identified in the <b>for</b> property. | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| immediate | A boolean value indicating that this component's value must be converted and validated immediately (that is, during Apply Request Values phase), rather than waiting until Process Validations phase. | String |
| keyBinding | A string value specifying the key associated to the component. for example "Alt+F1" | String |
| keyPressListener | Executed when the component detects a key pressed event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| value | A string value holding the current value of the component. | String |
<p>The Box Component is a container.</p> <p>It can have a graphical representation or not; But it is mainly used to apply a collective treatment to a set of component, for example show or hide a group of component.</p> <p>The Box Component has the following capabilities : <ul> <li>Position & Size</li> <li>Foreground & Background Color</li> <li>Margin</li> <li>Help</li> <li>Visibility</li> <li>Background Image</li> <li>Border</li> <li>Events Handling</li> <li>Contextual Menu</li> <li>Async Render (AJAX)</li> </ul> </p>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| asyncRenderMode | A string that indicates the rendering mode for asynchronous capable component. <LI> <UL> If value is "none", the rendering is synchronous (made with the englobing page rendering). </UL> <UL> If value is "buffer", the rendering is calculated with the page and may contains HTML elements, it is sent to the client only when needed (asynchrponously). </UL> <UL> If value is "tree", the rendering is calculated only when needed (the HTML elements are ignored) </UL> </LI> | String |
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| backgroundImageHorizontalPosition | A string indicating the horizontal positionning for the background image. | String |
| backgroundImageHorizontalRepeat | A boolean value indicating wether the background image should be repeated horizontally or not. | String |
| backgroundImageURL | An url string pointing to the background image. | String |
| backgroundImageVerticalPosition | A string indicating the vertical positionning for the background image. | String |
| backgroundImageVerticalRepeat | A boolean value indicating wether the background image should be repeated vertically or not. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| border | A boolean value that indicates if the component should show a border or not. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| height | A string value (as specified by CSS) for the height of the component. | String |
| helpMessage | A string value specifying the message to be shown by a <a href="/comps/helpMessageZoneComponent.html">helpMessageZone Component</a>. | String |
| helpURL | An URL that points to a help page for the component. it is used for example by a <a href="/comps/helpButtonComponent.html">helpButton Component</a>. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| horizontalScroll | A boolean value indicating wether the horizontal scroll is shown. | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| initListener | Executed when the component is intialized. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| loadListener | Executed when the component is fully loaded (similar to init for AJAX). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| lookId | A string value specifying the choosen look of the component. | String |
| marginBottom | A string value specifying the margin size for the component's bottom (compliant to CSS margin-bottom). | String |
| marginLeft | A string value specifying the margin size for the component's left (compliant to CSS margin-left). | String |
| marginRight | A string value specifying the margin size for the component's right (compliant to CSS margin-right). | String |
| marginTop | A string value specifying the margin size for the component's top (compliant to CSS margin-top). | String |
| margins | A string value specifying the margins for the component (compliant to CSS margin). | String |
| mouseOutListener | Executed when the pointer leaves the area of the component. A string that represent a javascript expression to evaluate. | String |
| mouseOverListener | Executed when the pointer hover the component's area. A string that represent a javascript expression to evaluate. | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| scopeValue | A string value specifying the binding associated to a variable representing a shortcut. (cf. scopeVar) ex: if scopeVar "bat" is associated to scopeValue "bean.attribute1.attribute2" then the use of "bat.attribute3" will be equivalente to "bean.attribute1.attribute2.attribute3" | String |
| scopeVar | A string value specifying the name of a variable representing a shortcut to a binding. (cf. scopeValue) ex: if scopeVar "bat" is associated to scopeValue "bean.attribute1.attribute2" then the use of "bat.attribute3" will be equivalente to "bean.attribute1.attribute2.attribute3" | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| userEventListener | Executed when the component is called. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| verticalScroll | A boolean value indicating wether the vertical scroll is shown. | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
| x | A string value (as specified by CSS) for the x position of the component. | String |
| y | A string value (as specified by CSS) for the x position of the component. | String |
<p>The button Component is equivalent to the standard HTML tag <BUTTON>.</p> <p>The button Component has the following capabilities : <ul> <li>Position & Size</li> <li>Foreground & Background Color</li> <li>Text & font</li> <li>Help</li> <li>Visibility, Read-Only, Disabled</li> <li>Events Handling</li> </ul> </p>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| accessKey | A string that indicates the alphanumeric key used to execute an action from the keyboard (in conjunction with a alteration key ex : Alt). | String |
| action | A string that indicates the url to activate on the server when the component is actionned through a key mapping on the faces config file. | String |
| actionListener | Executed when the the component is activated by the user. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| blurListener | Executed when the focus quits the component. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| disabled | A boolean value that represents the disabled state of the component. | String |
| focusListener | Executed when the component gets the focus. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| fontBold | A boolean value indicating the <i>bold</i> property for the specified font. | String |
| fontItalic | A boolean value indicating the <i>italic</i> property for the specified font. | String |
| fontName | A string value indicating the name of the font used for this component. | String |
| fontSize | A string indicating the size to use for the selected font. (or any other CSS accepted value for font size). <br/> values [xx-small|x-small|small|medium|large|x-large|xx-large|smaller|larger|<i>length</i> for example 10px|<i>%</i>] | String |
| fontUnderline | A boolean value indicating the <i>underline</i> property for the specified font. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| height | A string value (as specified by CSS) for the height of the component. | String |
| helpMessage | A string value specifying the message to be shown by a <a href="/comps/helpMessageZoneComponent.html">helpMessageZone Component</a>. | String |
| helpURL | An URL that points to a help page for the component. it is used for example by a <a href="/comps/helpButtonComponent.html">helpButton Component</a>. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| immediate | A boolean value indicating that this component's value must be converted and validated immediately (that is, during Apply Request Values phase), rather than waiting until Process Validations phase. | String |
| initListener | Executed when the component is intialized. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| lookId | A string value specifying the choosen look of the component. | String |
| marginBottom | A string value specifying the margin size for the component's bottom (compliant to CSS margin-bottom). | String |
| marginLeft | A string value specifying the margin size for the component's left (compliant to CSS margin-left). | String |
| marginRight | A string value specifying the margin size for the component's right (compliant to CSS margin-right). | String |
| marginTop | A string value specifying the margin size for the component's top (compliant to CSS margin-top). | String |
| margins | A string value specifying the margins for the component (compliant to CSS margin). | String |
| mouseOutListener | Executed when the pointer leaves the area of the component. A string that represent a javascript expression to evaluate. | String |
| mouseOverListener | Executed when the pointer hover the component's area. A string that represent a javascript expression to evaluate. | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| readOnly | A boolean value indicating that this component will prohibit changes by the user. The element may receive focus unless it has also been disabled. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| selectionListener | Executed when the component is selected. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| tabIndex | An int value specifying the position of this element in the tabbing order for the current document. This value must be an integer between 0 and 32767. | String |
| text | A string value specifying the text (literal or binding) to be shown. | String |
| textAlignment | A string value specifying the alignement for the text in the component : <ul><li> left </li><li> right </li><li> center </li></ul> | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| unlockedClientAttributeNames | A string value holding a comma separated list of the client modifiable properties. | String |
| userEventListener | Executed when the component is called. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| value | A string value holding the current value of the component. | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
| x | A string value (as specified by CSS) for the x position of the component. | String |
| y | A string value (as specified by CSS) for the x position of the component. | String |
<p>The calendar Component shows a calendar. It can be customized in differents ways (days off, holidays, tool tips ...).</p> <p>The calendar Component has the following capabilities : <ul> <li>Position & Size</li> <li>Foreground & Background Color</li> <li>Text, font & image</li> <li>Margin & border</li> <li>Help</li> <li>Visibility, Read-Only, Disabled</li> <li>Events Handling</li> <li>Calendar functions</li> </ul> </p>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| accessKey | A string that indicates the alphanumeric key used to execute an action from the keyboard (in conjunction with a alteration key ex : Alt). | String |
| attributesLocale | A string value that indicates the locale associated with the component. | String |
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| blurListener | Executed when the focus quits the component. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| border | A boolean value that indicates if the component should show a border or not. | String |
| clientDatesStrategy | A string indicating the AJAX transfert strategy for the calendar component : the dates' characteristics (styleClass, toolTip ...). Those characteristics can be retrieved by month, year or totally. | String |
| converter | The converter id to use. as specified in faces-config.xml. | String |
| disabled | A boolean value that represents the disabled state of the component. | String |
| disabledWeekDays | A list of disabled week days (depending on the locale specified for the component). | String |
| focusListener | Executed when the component gets the focus. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| fontBold | A boolean value indicating the <i>bold</i> property for the specified font. | String |
| fontItalic | A boolean value indicating the <i>italic</i> property for the specified font. | String |
| fontName | A string value indicating the name of the font used for this component. | String |
| fontSize | A string indicating the size to use for the selected font. (or any other CSS accepted value for font size). <br/> values [xx-small|x-small|small|medium|large|x-large|xx-large|smaller|larger|<i>length</i> for example 10px|<i>%</i>] | String |
| fontUnderline | A boolean value indicating the <i>underline</i> property for the specified font. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| height | A string value (as specified by CSS) for the height of the component. | String |
| helpMessage | A string value specifying the message to be shown by a <a href="/comps/helpMessageZoneComponent.html">helpMessageZone Component</a>. | String |
| helpURL | An URL that points to a help page for the component. it is used for example by a <a href="/comps/helpButtonComponent.html">helpButton Component</a>. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| immediate | A boolean value indicating that this component's value must be converted and validated immediately (that is, during Apply Request Values phase), rather than waiting until Process Validations phase. | String |
| initListener | Executed when the component is intialized. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyDownListener | Executed when the component detects a key down event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyPressListener | Executed when the component detects a key pressed event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyUpListener | Executed when the component detects a key up event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| lookId | A string value specifying the choosen look of the component. | String |
| marginBottom | A string value specifying the margin size for the component's bottom (compliant to CSS margin-bottom). | String |
| marginLeft | A string value specifying the margin size for the component's left (compliant to CSS margin-left). | String |
| marginRight | A string value specifying the margin size for the component's right (compliant to CSS margin-right). | String |
| marginTop | A string value specifying the margin size for the component's top (compliant to CSS margin-top). | String |
| margins | A string value specifying the margins for the component (compliant to CSS margin). | String |
| maxDate | A date value indicating the maximum acceptable date for the component. The last accepted value is maxDate minus one day. | String |
| minDate | A date value indicating the minimum acceptable date for the component. the first accepted value is minDate plus one day. | String |
| mode | A string specifying the selection mode : <ul><li> date: one day per selection </li><li> period: a continuous period of time </li><li> periods: several non-continuous period of time (for example every wednesday) </li></ul> | String |
| mouseOutListener | Executed when the pointer leaves the area of the component. A string that represent a javascript expression to evaluate. | String |
| mouseOverListener | Executed when the pointer hover the component's area. A string that represent a javascript expression to evaluate. | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| readOnly | A boolean value indicating that this component will prohibit changes by the user. The element may receive focus unless it has also been disabled. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| selectionListener | Executed when the component is selected. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| tabIndex | An int value specifying the position of this element in the tabbing order for the current document. This value must be an integer between 0 and 32767. | String |
| textAlignment | A string value specifying the alignement for the text in the component : <ul><li> left </li><li> right </li><li> center </li></ul> | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| twoDigitYearStart | A string value specifying the year considered as base for selecting a date when the associated dateEntry's value's year has only two digits. | String |
| unlockedClientAttributeNames | A string value holding a comma separated list of the client modifiable properties. | String |
| userEventListener | Executed when the component is called. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| value | A string value holding the current value of the component. | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
| x | A string value (as specified by CSS) for the x position of the component. | String |
| y | A string value (as specified by CSS) for the x position of the component. | String |
An element belonging to a <a href="/comps/cardBoxComponent.html">cardBox Component</a> and holding the components.
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| converter | The converter id to use. as specified in faces-config.xml. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| height | A string value (as specified by CSS) for the height of the component. | String |
| helpMessage | A string value specifying the message to be shown by a <a href="/comps/helpMessageZoneComponent.html">helpMessageZone Component</a>. | String |
| helpURL | An URL that points to a help page for the component. it is used for example by a <a href="/comps/helpButtonComponent.html">helpButton Component</a>. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| initListener | Executed when the component is intialized. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| loadListener | Executed when the component is fully loaded (similar to init for AJAX). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| lookId | A string value specifying the choosen look of the component. | String |
| marginBottom | A string value specifying the margin size for the component's bottom (compliant to CSS margin-bottom). | String |
| marginLeft | A string value specifying the margin size for the component's left (compliant to CSS margin-left). | String |
| marginRight | A string value specifying the margin size for the component's right (compliant to CSS margin-right). | String |
| marginTop | A string value specifying the margin size for the component's top (compliant to CSS margin-top). | String |
| margins | A string value specifying the margins for the component (compliant to CSS margin). | String |
| mouseOutListener | Executed when the pointer leaves the area of the component. A string that represent a javascript expression to evaluate. | String |
| mouseOverListener | Executed when the pointer hover the component's area. A string that represent a javascript expression to evaluate. | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| scopeValue | A string value specifying the binding associated to a variable representing a shortcut. (cf. scopeVar) ex: if scopeVar "bat" is associated to scopeValue "bean.attribute1.attribute2" then the use of "bat.attribute3" will be equivalente to "bean.attribute1.attribute2.attribute3" | String |
| scopeVar | A string value specifying the name of a variable representing a shortcut to a binding. (cf. scopeValue) ex: if scopeVar "bat" is associated to scopeValue "bean.attribute1.attribute2" then the use of "bat.attribute3" will be equivalente to "bean.attribute1.attribute2.attribute3" | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| textAlignment | A string value specifying the alignement for the text in the component : <ul><li> left </li><li> right </li><li> center </li></ul> | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| unlockedClientAttributeNames | A string value holding a comma separated list of the client modifiable properties. | String |
| userEventListener | Executed when the component is called. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| value | A string value holding the current value of the component. | String |
| verticalAlignment | A string that represent the vertical alignement of the data in the component. <ul><li> top </li><li> center </li><li> bottom </li></ul> | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
| x | A string value (as specified by CSS) for the x position of the component. | String |
| y | A string value (as specified by CSS) for the x position of the component. | String |
<p>The cardBox Component is similar to the <a href="/comps/tabbedPaneComponent.html">tabbedPane Component</a> without title and borders. It is usefull for showing alternatively different contents on the same page.</p> <p>The cardBox Component has the following capabilities : <ul> <li>Position & Size</li> <li>Foreground & Background Color</li> <li>Help</li> <li>Visibility, Read-Only, Disabled</li> <li>Events Handling</li> </ul> </p>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| accessKey | A string that indicates the alphanumeric key used to execute an action from the keyboard (in conjunction with a alteration key ex : Alt). | String |
| asyncRenderMode | A string that indicates the rendering mode for asynchronous capable component. <LI> <UL> If value is "none", the rendering is synchronous (made with the englobing page rendering). </UL> <UL> If value is "buffer", the rendering is calculated with the page and may contains HTML elements, it is sent to the client only when needed (asynchrponously). </UL> <UL> If value is "tree", the rendering is calculated only when needed (the HTML elements are ignored) </UL> </LI> | String |
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| blurListener | Executed when the focus quits the component. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| converter | The converter id to use. as specified in faces-config.xml. | String |
| disabled | A boolean value that represents the disabled state of the component. | String |
| focusListener | Executed when the component gets the focus. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| fontBold | A boolean value indicating the <i>bold</i> property for the specified font. | String |
| fontItalic | A boolean value indicating the <i>italic</i> property for the specified font. | String |
| fontName | A string value indicating the name of the font used for this component. | String |
| fontSize | A string indicating the size to use for the selected font. (or any other CSS accepted value for font size). <br/> values [xx-small|x-small|small|medium|large|x-large|xx-large|smaller|larger|<i>length</i> for example 10px|<i>%</i>] | String |
| fontUnderline | A boolean value indicating the <i>underline</i> property for the specified font. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| height | A string value (as specified by CSS) for the height of the component. | String |
| helpMessage | A string value specifying the message to be shown by a <a href="/comps/helpMessageZoneComponent.html">helpMessageZone Component</a>. | String |
| helpURL | An URL that points to a help page for the component. it is used for example by a <a href="/comps/helpButtonComponent.html">helpButton Component</a>. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| immediate | A boolean value indicating that this component's value must be converted and validated immediately (that is, during Apply Request Values phase), rather than waiting until Process Validations phase. | String |
| initListener | Executed when the component is intialized. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyDownListener | Executed when the component detects a key down event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyPressListener | Executed when the component detects a key pressed event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyUpListener | Executed when the component detects a key up event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| lookId | A string value specifying the choosen look of the component. | String |
| marginBottom | A string value specifying the margin size for the component's bottom (compliant to CSS margin-bottom). | String |
| marginLeft | A string value specifying the margin size for the component's left (compliant to CSS margin-left). | String |
| marginRight | A string value specifying the margin size for the component's right (compliant to CSS margin-right). | String |
| marginTop | A string value specifying the margin size for the component's top (compliant to CSS margin-top). | String |
| margins | A string value specifying the margins for the component (compliant to CSS margin). | String |
| mouseOutListener | Executed when the pointer leaves the area of the component. A string that represent a javascript expression to evaluate. | String |
| mouseOverListener | Executed when the pointer hover the component's area. A string that represent a javascript expression to evaluate. | String |
| preference | A binded object that holds the preferences for the component. | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| scopeValue | A string value specifying the binding associated to a variable representing a shortcut. (cf. scopeVar) ex: if scopeVar "bat" is associated to scopeValue "bean.attribute1.attribute2" then the use of "bat.attribute3" will be equivalente to "bean.attribute1.attribute2.attribute3" | String |
| scopeVar | A string value specifying the name of a variable representing a shortcut to a binding. (cf. scopeValue) ex: if scopeVar "bat" is associated to scopeValue "bean.attribute1.attribute2" then the use of "bat.attribute3" will be equivalente to "bean.attribute1.attribute2.attribute3" | String |
| selectionListener | Executed when the component is selected. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| tabIndex | An int value specifying the position of this element in the tabbing order for the current document. This value must be an integer between 0 and 32767. | String |
| textAlignment | A string value specifying the alignement for the text in the component : <ul><li> left </li><li> right </li><li> center </li></ul> | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| unlockedClientAttributeNames | A string value holding a comma separated list of the client modifiable properties. | String |
| userEventListener | Executed when the component is called. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| value | A string value holding the current value of the component. | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
| x | A string value (as specified by CSS) for the x position of the component. | String |
| y | A string value (as specified by CSS) for the x position of the component. | String |
<p>The checkButton Component is equivalent to the <INPUT TYPE="checkbox"> HTML tag.</p> <p>The checkButton Component has the following capabilities : <ul> <li>Position & Size</li> <li>Foreground & Background Color</li> <li>Text & font</li> <li>Help</li> <li>Visibility, Read-Only, Disabled</li> <li>Events Handling</li> </ul> </p>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| accessKey | A string that indicates the alphanumeric key used to execute an action from the keyboard (in conjunction with a alteration key ex : Alt). | String |
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| blurListener | Executed when the focus quits the component. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| converter | The converter id to use. as specified in faces-config.xml. | String |
| disabled | A boolean value that represents the disabled state of the component. | String |
| focusListener | Executed when the component gets the focus. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| fontBold | A boolean value indicating the <i>bold</i> property for the specified font. | String |
| fontItalic | A boolean value indicating the <i>italic</i> property for the specified font. | String |
| fontName | A string value indicating the name of the font used for this component. | String |
| fontSize | A string indicating the size to use for the selected font. (or any other CSS accepted value for font size). <br/> values [xx-small|x-small|small|medium|large|x-large|xx-large|smaller|larger|<i>length</i> for example 10px|<i>%</i>] | String |
| fontUnderline | A boolean value indicating the <i>underline</i> property for the specified font. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| height | A string value (as specified by CSS) for the height of the component. | String |
| helpMessage | A string value specifying the message to be shown by a <a href="/comps/helpMessageZoneComponent.html">helpMessageZone Component</a>. | String |
| helpURL | An URL that points to a help page for the component. it is used for example by a <a href="/comps/helpButtonComponent.html">helpButton Component</a>. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| immediate | A boolean value indicating that this component's value must be converted and validated immediately (that is, during Apply Request Values phase), rather than waiting until Process Validations phase. | String |
| initListener | Executed when the component is intialized. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyDownListener | Executed when the component detects a key down event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyPressListener | Executed when the component detects a key pressed event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyUpListener | Executed when the component detects a key up event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| lookId | A string value specifying the choosen look of the component. | String |
| marginBottom | A string value specifying the margin size for the component's bottom (compliant to CSS margin-bottom). | String |
| marginLeft | A string value specifying the margin size for the component's left (compliant to CSS margin-left). | String |
| marginRight | A string value specifying the margin size for the component's right (compliant to CSS margin-right). | String |
| marginTop | A string value specifying the margin size for the component's top (compliant to CSS margin-top). | String |
| margins | A string value specifying the margins for the component (compliant to CSS margin). | String |
| mouseOutListener | Executed when the pointer leaves the area of the component. A string that represent a javascript expression to evaluate. | String |
| mouseOverListener | Executed when the pointer hover the component's area. A string that represent a javascript expression to evaluate. | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| readOnly | A boolean value indicating that this component will prohibit changes by the user. The element may receive focus unless it has also been disabled. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| selected | A boolean value indicating wether the component is selected. | String |
| selectionListener | Executed when the component is selected. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| tabIndex | An int value specifying the position of this element in the tabbing order for the current document. This value must be an integer between 0 and 32767. | String |
| text | A string value specifying the text (literal or binding) to be shown. | String |
| textAlignment | A string value specifying the alignement for the text in the component : <ul><li> left </li><li> right </li><li> center </li></ul> | String |
| textPosition | A string value specifying the position of the text in the component : <ul><li> left </li><li> right </li><li> top </li><li> bottom </li></ul> | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| unlockedClientAttributeNames | A string value holding a comma separated list of the client modifiable properties. | String |
| userEventListener | Executed when the component is called. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| value | A string value holding the current value of the component. | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
| x | A string value (as specified by CSS) for the x position of the component. | String |
| y | A string value (as specified by CSS) for the x position of the component. | String |
<p>The checkButton3States Component is a <a href="/comps/checkButtonComponent.html">CheckButton</a> with 3 states : Check, unchecked and undefined. It is often used to show the state of a group of checkButtons</p> <p>This component is <b>experimental</b>.</p> <p>The checkButton3States Component has the following capabilities : <ul> <li>Position & Size</li> <li>Foreground & Background Color</li> <li>Text & font</li> <li>Help</li> <li>Visibility, Read-Only, Disabled</li> <li>Events Handling</li> </ul> </p>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| accessKey | A string that indicates the alphanumeric key used to execute an action from the keyboard (in conjunction with a alteration key ex : Alt). | String |
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| blurListener | Executed when the focus quits the component. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| converter | The converter id to use. as specified in faces-config.xml. | String |
| disabled | A boolean value that represents the disabled state of the component. | String |
| focusListener | Executed when the component gets the focus. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| fontBold | A boolean value indicating the <i>bold</i> property for the specified font. | String |
| fontItalic | A boolean value indicating the <i>italic</i> property for the specified font. | String |
| fontName | A string value indicating the name of the font used for this component. | String |
| fontSize | A string indicating the size to use for the selected font. (or any other CSS accepted value for font size). <br/> values [xx-small|x-small|small|medium|large|x-large|xx-large|smaller|larger|<i>length</i> for example 10px|<i>%</i>] | String |
| fontUnderline | A boolean value indicating the <i>underline</i> property for the specified font. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| height | A string value (as specified by CSS) for the height of the component. | String |
| helpMessage | A string value specifying the message to be shown by a <a href="/comps/helpMessageZoneComponent.html">helpMessageZone Component</a>. | String |
| helpURL | An URL that points to a help page for the component. it is used for example by a <a href="/comps/helpButtonComponent.html">helpButton Component</a>. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| immediate | A boolean value indicating that this component's value must be converted and validated immediately (that is, during Apply Request Values phase), rather than waiting until Process Validations phase. | String |
| initListener | Executed when the component is intialized. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyDownListener | Executed when the component detects a key down event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyPressListener | Executed when the component detects a key pressed event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyUpListener | Executed when the component detects a key up event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| lookId | A string value specifying the choosen look of the component. | String |
| marginBottom | A string value specifying the margin size for the component's bottom (compliant to CSS margin-bottom). | String |
| marginLeft | A string value specifying the margin size for the component's left (compliant to CSS margin-left). | String |
| marginRight | A string value specifying the margin size for the component's right (compliant to CSS margin-right). | String |
| marginTop | A string value specifying the margin size for the component's top (compliant to CSS margin-top). | String |
| margins | A string value specifying the margins for the component (compliant to CSS margin). | String |
| mouseOutListener | Executed when the pointer leaves the area of the component. A string that represent a javascript expression to evaluate. | String |
| mouseOverListener | Executed when the pointer hover the component's area. A string that represent a javascript expression to evaluate. | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| readOnly | A boolean value indicating that this component will prohibit changes by the user. The element may receive focus unless it has also been disabled. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| selectedState | A boolean value indicating wether the selected component is undefined. | String |
| selectionListener | Executed when the component is selected. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| tabIndex | An int value specifying the position of this element in the tabbing order for the current document. This value must be an integer between 0 and 32767. | String |
| text | A string value specifying the text (literal or binding) to be shown. | String |
| textAlignment | A string value specifying the alignement for the text in the component : <ul><li> left </li><li> right </li><li> center </li></ul> | String |
| textPosition | A string value specifying the position of the text in the component : <ul><li> left </li><li> right </li><li> top </li><li> bottom </li></ul> | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| unlockedClientAttributeNames | A string value holding a comma separated list of the client modifiable properties. | String |
| userEventListener | Executed when the component is called. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| value | A string value holding the current value of the component. | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
| x | A string value (as specified by CSS) for the x position of the component. | String |
| y | A string value (as specified by CSS) for the x position of the component. | String |
Can contain:empty
| Name | Description | Type |
|---|---|---|
| name* | * | String |
| value* | * | String |
<p>The combo Component is equivalent to the standard HTML tag <SELECT SIZE=1>.</p> <p>The combo Component has the following capabilities : <ul> <li>Position & Size</li> <li>Foreground & Background Color</li> <li>Text & font</li> <li>Help</li> <li>Visibility, Read-Only, Disabled</li> <li>Events Handling</li> </ul> </p>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| accessKey | A string that indicates the alphanumeric key used to execute an action from the keyboard (in conjunction with a alteration key ex : Alt). | String |
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| blurListener | Executed when the focus quits the component. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| converter | The converter id to use. as specified in faces-config.xml. | String |
| disabled | A boolean value that represents the disabled state of the component. | String |
| filterProperties | A binded object that hold the filters to use on the server side. This property is often set via javascript code. | String |
| focusListener | Executed when the component gets the focus. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| fontBold | A boolean value indicating the <i>bold</i> property for the specified font. | String |
| fontItalic | A boolean value indicating the <i>italic</i> property for the specified font. | String |
| fontName | A string value indicating the name of the font used for this component. | String |
| fontSize | A string indicating the size to use for the selected font. (or any other CSS accepted value for font size). <br/> values [xx-small|x-small|small|medium|large|x-large|xx-large|smaller|larger|<i>length</i> for example 10px|<i>%</i>] | String |
| fontUnderline | A boolean value indicating the <i>underline</i> property for the specified font. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| height | A string value (as specified by CSS) for the height of the component. | String |
| helpMessage | A string value specifying the message to be shown by a <a href="/comps/helpMessageZoneComponent.html">helpMessageZone Component</a>. | String |
| helpURL | An URL that points to a help page for the component. it is used for example by a <a href="/comps/helpButtonComponent.html">helpButton Component</a>. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| immediate | A boolean value indicating that this component's value must be converted and validated immediately (that is, during Apply Request Values phase), rather than waiting until Process Validations phase. | String |
| initListener | Executed when the component is intialized. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyDownListener | Executed when the component detects a key down event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyPressListener | Executed when the component detects a key pressed event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyUpListener | Executed when the component detects a key up event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| lookId | A string value specifying the choosen look of the component. | String |
| marginBottom | A string value specifying the margin size for the component's bottom (compliant to CSS margin-bottom). | String |
| marginLeft | A string value specifying the margin size for the component's left (compliant to CSS margin-left). | String |
| marginRight | A string value specifying the margin size for the component's right (compliant to CSS margin-right). | String |
| marginTop | A string value specifying the margin size for the component's top (compliant to CSS margin-top). | String |
| margins | A string value specifying the margins for the component (compliant to CSS margin). | String |
| mouseOutListener | Executed when the pointer leaves the area of the component. A string that represent a javascript expression to evaluate. | String |
| mouseOverListener | Executed when the pointer hover the component's area. A string that represent a javascript expression to evaluate. | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| required | A boolean value indicating that the user is required to provide a submitted value for this input component. | String |
| selectionListener | Executed when the component is selected. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| tabIndex | An int value specifying the position of this element in the tabbing order for the current document. This value must be an integer between 0 and 32767. | String |
| textAlignment | A string value specifying the alignement for the text in the component : <ul><li> left </li><li> right </li><li> center </li></ul> | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| unlockedClientAttributeNames | A string value holding a comma separated list of the client modifiable properties. | String |
| userEventListener | Executed when the component is called. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| value | A string value holding the current value of the component. | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
| x | A string value (as specified by CSS) for the x position of the component. | String |
| y | A string value (as specified by CSS) for the x position of the component. | String |
Reserved for future use
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| blurListener | Executed when the focus quits the component. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| border | A boolean value that indicates if the component should show a border or not. | String |
| borderType | A string that indicates the type of border the component should show. Check for availability for a particular component. | String |
| columnStyleClass | A space-separated list of CSS style class(es) to be applied when this column is rendered. This value will be passed through as the "class" attribute on generated markup. | String |
| first | A number identifying the row to be displayed at the top of the component. | String |
| focusListener | Executed when the component gets the focus. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| height | A string value (as specified by CSS) for the height of the component. | String |
| helpMessage | A string value specifying the message to be shown by a <a href="/comps/helpMessageZoneComponent.html">helpMessageZone Component</a>. | String |
| helpURL | An URL that points to a help page for the component. it is used for example by a <a href="/comps/helpButtonComponent.html">helpButton Component</a>. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| horizontalScrollPosition | A string value specifying the position of the horizontal scroolbar. | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| initListener | Executed when the component is intialized. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| lookId | A string value specifying the choosen look of the component. | String |
| marginBottom | A string value specifying the margin size for the component's bottom (compliant to CSS margin-bottom). | String |
| marginLeft | A string value specifying the margin size for the component's left (compliant to CSS margin-left). | String |
| marginRight | A string value specifying the margin size for the component's right (compliant to CSS margin-right). | String |
| marginTop | A string value specifying the margin size for the component's top (compliant to CSS margin-top). | String |
| margins | A string value specifying the margins for the component (compliant to CSS margin). | String |
| mouseOutListener | Executed when the pointer leaves the area of the component. A string that represent a javascript expression to evaluate. | String |
| mouseOverListener | Executed when the pointer hover the component's area. A string that represent a javascript expression to evaluate. | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| resetListener | Executed when the reset button is activated on a form. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| rowCountVar | A string value specifying the name of the variable receiving the number of rows. | String |
| rowIndexVar | A string value specifying the name of the variable receiving the index of the current row. | String |
| rowStyleClass | A space-separated list of CSS style class(es) to be applied when the row is rendered. This value will be passed through as the "class" attribute on generated markup. | String |
| rows | An int value specifying the number of rows to display, starting with the one identified by the "first" property. If this value is set to zero, all available rows in the underlying data model will be displayed. | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| unlockedClientAttributeNames | A string value holding a comma separated list of the client modifiable properties. | String |
| userEventListener | Executed when the component is called. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| value | A string value holding the current value of the component. | String |
| var | A string value holding the name of a request-scope attribute under which the model data for the row selected by the current value of the "rowIndex" property (i.e. also the current value of the "rowData" property) will be exposed. | String |
| verticalScrollPosition | A string value specifying the position of the vertical scroolbar (Browser dependant). | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
| x | A string value (as specified by CSS) for the x position of the component. | String |
| y | A string value (as specified by CSS) for the x position of the component. | String |
Shows the components for each data with pagination.
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| blurListener | Executed when the focus quits the component. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| border | A boolean value that indicates if the component should show a border or not. | String |
| borderType | A string that indicates the type of border the component should show. Check for availability for a particular component. | String |
| columnNumber | An int value holding the width of the component in characters : x characters translates into y pixels width. | String |
| columnStyleClass | A space-separated list of CSS style class(es) to be applied when this column is rendered. This value will be passed through as the "class" attribute on generated markup. | String |
| first | A number identifying the row to be displayed at the top of the component. | String |
| focusListener | Executed when the component gets the focus. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| height | A string value (as specified by CSS) for the height of the component. | String |
| helpMessage | A string value specifying the message to be shown by a <a href="/comps/helpMessageZoneComponent.html">helpMessageZone Component</a>. | String |
| helpURL | An URL that points to a help page for the component. it is used for example by a <a href="/comps/helpButtonComponent.html">helpButton Component</a>. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| horizontalScrollPosition | A string value specifying the position of the horizontal scroolbar. | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| initListener | Executed when the component is intialized. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| lookId | A string value specifying the choosen look of the component. | String |
| marginBottom | A string value specifying the margin size for the component's bottom (compliant to CSS margin-bottom). | String |
| marginLeft | A string value specifying the margin size for the component's left (compliant to CSS margin-left). | String |
| marginRight | A string value specifying the margin size for the component's right (compliant to CSS margin-right). | String |
| marginTop | A string value specifying the margin size for the component's top (compliant to CSS margin-top). | String |
| margins | A string value specifying the margins for the component (compliant to CSS margin). | String |
| mouseOutListener | Executed when the pointer leaves the area of the component. A string that represent a javascript expression to evaluate. | String |
| mouseOverListener | Executed when the pointer hover the component's area. A string that represent a javascript expression to evaluate. | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| resetListener | Executed when the reset button is activated on a form. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| rowCountVar | A string value specifying the name of the variable receiving the number of rows. | String |
| rowIndexVar | A string value specifying the name of the variable receiving the index of the current row. | String |
| rowStyleClass | A space-separated list of CSS style class(es) to be applied when the row is rendered. This value will be passed through as the "class" attribute on generated markup. | String |
| rows | An int value specifying the number of rows to display, starting with the one identified by the "first" property. If this value is set to zero, all available rows in the underlying data model will be displayed. | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| unlockedClientAttributeNames | A string value holding a comma separated list of the client modifiable properties. | String |
| userEventListener | Executed when the component is called. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| value | A string value holding the current value of the component. | String |
| var | A string value holding the name of a request-scope attribute under which the model data for the row selected by the current value of the "rowIndex" property (i.e. also the current value of the "rowData" property) will be exposed. | String |
| verticalScrollPosition | A string value specifying the position of the vertical scroolbar (Browser dependant). | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
| x | A string value (as specified by CSS) for the x position of the component. | String |
| y | A string value (as specified by CSS) for the x position of the component. | String |
Register a ByteConverter instance on the UIComponent associated with the closest parent UIComponent custom action.
Can contain:empty
| Name | Description | Type |
|---|---|---|
| currencyCode | ISO 4217 currency code, applied only when formatting currencies. | String |
| currencySymbol | Currency symbol, applied only when formatting currencies. | String |
| defaultValue | Specifies the default value if the string is null or empty. | String |
| groupingUsed | Flag specifying whether formatted output will contain grouping separators. Expressions must evaluate to a boolean. Default value is true. | String |
| locale | Locale whose predefined styles for numbers are used during formatting and parsing. If not specified, the Locale returned by FacesContext.getViewRoot().getLocale() will be used. Expressions must evaluate to a java.util.Locale. | String |
| maxIntegerDigits | Maximum number of digits that will be formatted in the integer portion of the output. Expressions must evaluate to an int. | String |
| minIntegerDigits | Minimum number of digits that will be formatted in the integer portion of the output. Expressions must evaluate to an int. | String |
| pattern | Custom formatting pattern which determins how the number string should be formatted and parsed. | String |
| type | Specifies how the number string will be formatted and parsed. Valid values are "number", "currency", and "percentage". Default value is "number". | String |
Register a DoubleConverter instance on the UIComponent associated with the closest parent UIComponent custom action.
Can contain:empty
| Name | Description | Type |
|---|---|---|
| currencyCode | ISO 4217 currency code, applied only when formatting currencies. | String |
| currencySymbol | Currency symbol, applied only when formatting currencies. | String |
| defaultValue | Specifies the default value if the string is null or empty. | String |
| groupingUsed | Flag specifying whether formatted output will contain grouping separators. Expressions must evaluate to a boolean. Default value is true. | String |
| integerOnly | Flag specifying whether only the integer part of the value will be formatted and parsed. Expressions must evaluate to a boolean. Default value is false. | String |
| locale | Locale whose predefined styles for numbers are used during formatting and parsing. If not specified, the Locale returned by FacesContext.getViewRoot().getLocale() will be used. Expressions must evaluate to a java.util.Locale. | String |
| maxFractionDigits | Maximum number of digits that will be formatted in the fractional portion of the output. Expressions must evaluate to an int. | String |
| maxIntegerDigits | Maximum number of digits that will be formatted in the integer portion of the output. Expressions must evaluate to an int. | String |
| minFractionDigits | Minimum number of digits that will be formatted in the fractional portion of the output. Expressions must evaluate to an int. | String |
| minIntegerDigits | Minimum number of digits that will be formatted in the integer portion of the output. Expressions must evaluate to an int. | String |
| pattern | Custom formatting pattern which determins how the number string should be formatted and parsed. | String |
| type | Specifies how the number string will be formatted and parsed. Valid values are "number", "currency", and "percentage". Default value is "number". | String |
Register a FloatConverter instance on the UIComponent associated with the closest parent UIComponent custom action.
Can contain:empty
| Name | Description | Type |
|---|---|---|
| currencyCode | ISO 4217 currency code, applied only when formatting currencies. | String |
| currencySymbol | Currency symbol, applied only when formatting currencies. | String |
| defaultValue | Specifies the default value if the string is null or empty. | String |
| groupingUsed | Flag specifying whether formatted output will contain grouping separators. Expressions must evaluate to a boolean. Default value is true. | String |
| integerOnly | Flag specifying whether only the integer part of the value will be formatted and parsed. Expressions must evaluate to a boolean. Default value is false. | String |
| locale | Locale whose predefined styles for numbers are used during formatting and parsing. If not specified, the Locale returned by FacesContext.getViewRoot().getLocale() will be used. Expressions must evaluate to a java.util.Locale. | String |
| maxFractionDigits | Maximum number of digits that will be formatted in the fractional portion of the output. Expressions must evaluate to an int. | String |
| maxIntegerDigits | Maximum number of digits that will be formatted in the integer portion of the output. Expressions must evaluate to an int. | String |
| minFractionDigits | Minimum number of digits that will be formatted in the fractional portion of the output. Expressions must evaluate to an int. | String |
| minIntegerDigits | Minimum number of digits that will be formatted in the integer portion of the output. Expressions must evaluate to an int. | String |
| pattern | Custom formatting pattern which determins how the number string should be formatted and parsed. | String |
| type | Specifies how the number string will be formatted and parsed. Valid values are "number", "currency", and "percentage". Default value is "number". | String |
Register a IntegerConverter instance on the UIComponent associated with the closest parent UIComponent custom action.
Can contain:empty
| Name | Description | Type |
|---|---|---|
| currencyCode | ISO 4217 currency code, applied only when formatting currencies. | String |
| currencySymbol | Currency symbol, applied only when formatting currencies. | String |
| defaultValue | Specifies the default value if the string is null or empty. | String |
| groupingUsed | Flag specifying whether formatted output will contain grouping separators. Expressions must evaluate to a boolean. Default value is true. | String |
| locale | Locale whose predefined styles for numbers are used during formatting and parsing. If not specified, the Locale returned by FacesContext.getViewRoot().getLocale() will be used. Expressions must evaluate to a java.util.Locale. | String |
| maxIntegerDigits | Maximum number of digits that will be formatted in the integer portion of the output. Expressions must evaluate to an int. | String |
| minIntegerDigits | Minimum number of digits that will be formatted in the integer portion of the output. Expressions must evaluate to an int. | String |
| pattern | Custom formatting pattern which determins how the number string should be formatted and parsed. | String |
| type | Specifies how the number string will be formatted and parsed. Valid values are "number", "currency", and "percentage". Default value is "number". | String |
Register a LongConverter instance on the UIComponent associated with the closest parent UIComponent custom action.
Can contain:empty
| Name | Description | Type |
|---|---|---|
| currencyCode | ISO 4217 currency code, applied only when formatting currencies. | String |
| currencySymbol | Currency symbol, applied only when formatting currencies. | String |
| defaultValue | Specifies the default value if the string is null or empty. | String |
| groupingUsed | Flag specifying whether formatted output will contain grouping separators. Expressions must evaluate to a boolean. Default value is true. | String |
| locale | Locale whose predefined styles for numbers are used during formatting and parsing. If not specified, the Locale returned by FacesContext.getViewRoot().getLocale() will be used. Expressions must evaluate to a java.util.Locale. | String |
| maxIntegerDigits | Maximum number of digits that will be formatted in the integer portion of the output. Expressions must evaluate to an int. | String |
| minIntegerDigits | Minimum number of digits that will be formatted in the integer portion of the output. Expressions must evaluate to an int. | String |
| pattern | Custom formatting pattern which determins how the number string should be formatted and parsed. | String |
| type | Specifies how the number string will be formatted and parsed. Valid values are "number", "currency", and "percentage". Default value is "number". | String |
Register a ShortConverter instance on the UIComponent associated with the closest parent UIComponent custom action.
Can contain:empty
| Name | Description | Type |
|---|---|---|
| currencyCode | ISO 4217 currency code, applied only when formatting currencies. | String |
| currencySymbol | Currency symbol, applied only when formatting currencies. | String |
| defaultValue | Specifies the default value if the string is null or empty. | String |
| groupingUsed | Flag specifying whether formatted output will contain grouping separators. Expressions must evaluate to a boolean. Default value is true. | String |
| locale | Locale whose predefined styles for numbers are used during formatting and parsing. If not specified, the Locale returned by FacesContext.getViewRoot().getLocale() will be used. Expressions must evaluate to a java.util.Locale. | String |
| maxIntegerDigits | Maximum number of digits that will be formatted in the integer portion of the output. Expressions must evaluate to an int. | String |
| minIntegerDigits | Minimum number of digits that will be formatted in the integer portion of the output. Expressions must evaluate to an int. | String |
| pattern | Custom formatting pattern which determins how the number string should be formatted and parsed. | String |
| type | Specifies how the number string will be formatted and parsed. Valid values are "number", "currency", and "percentage". Default value is "number". | String |
A button Component highly customizable through its API.
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| accessKey | A string that indicates the alphanumeric key used to execute an action from the keyboard (in conjunction with a alteration key ex : Alt). | String |
| action | A string that indicates the url to activate on the server when the component is actionned through a key mapping on the faces config file. | String |
| actionListener | Executed when the the component is activated by the user. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| blurListener | Executed when the focus quits the component. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| border | A boolean value that indicates if the component should show a border or not. | String |
| borderType | A string that indicates the type of border the component should show. Check for availability for a particular component. | String |
| disabled | A boolean value that represents the disabled state of the component. | String |
| doubleClickListener | Executed when the component is double-clicked. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| focusListener | Executed when the component gets the focus. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| fontBold | A boolean value indicating the <i>bold</i> property for the specified font. | String |
| fontItalic | A boolean value indicating the <i>italic</i> property for the specified font. | String |
| fontName | A string value indicating the name of the font used for this component. | String |
| fontSize | A string indicating the size to use for the selected font. (or any other CSS accepted value for font size). <br/> values [xx-small|x-small|small|medium|large|x-large|xx-large|smaller|larger|<i>length</i> for example 10px|<i>%</i>] | String |
| fontUnderline | A boolean value indicating the <i>underline</i> property for the specified font. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| height | A string value (as specified by CSS) for the height of the component. | String |
| helpMessage | A string value specifying the message to be shown by a <a href="/comps/helpMessageZoneComponent.html">helpMessageZone Component</a>. | String |
| helpURL | An URL that points to a help page for the component. it is used for example by a <a href="/comps/helpButtonComponent.html">helpButton Component</a>. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| immediate | A boolean value indicating that this component's value must be converted and validated immediately (that is, during Apply Request Values phase), rather than waiting until Process Validations phase. | String |
| initListener | Executed when the component is intialized. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| lookId | A string value specifying the choosen look of the component. | String |
| marginBottom | A string value specifying the margin size for the component's bottom (compliant to CSS margin-bottom). | String |
| marginLeft | A string value specifying the margin size for the component's left (compliant to CSS margin-left). | String |
| marginRight | A string value specifying the margin size for the component's right (compliant to CSS margin-right). | String |
| marginTop | A string value specifying the margin size for the component's top (compliant to CSS margin-top). | String |
| margins | A string value specifying the margins for the component (compliant to CSS margin). | String |
| mouseOutListener | Executed when the pointer leaves the area of the component. A string that represent a javascript expression to evaluate. | String |
| mouseOverListener | Executed when the pointer hover the component's area. A string that represent a javascript expression to evaluate. | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| readOnly | A boolean value indicating that this component will prohibit changes by the user. The element may receive focus unless it has also been disabled. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| selectionListener | Executed when the component is selected. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| tabIndex | An int value specifying the position of this element in the tabbing order for the current document. This value must be an integer between 0 and 32767. | String |
| textAlignment | A string value specifying the alignement for the text in the component : <ul><li> left </li><li> right </li><li> center </li></ul> | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| unlockedClientAttributeNames | A string value holding a comma separated list of the client modifiable properties. | String |
| userEventListener | Executed when the component is called. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| value | A string value holding the current value of the component. | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
| x | A string value (as specified by CSS) for the x position of the component. | String |
| y | A string value (as specified by CSS) for the x position of the component. | String |
Specify a column.
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| alignment | A string that represents the alignement of the data in the component. <ul><li> left </li><li> right </li><li> center </li></ul> | String |
| ascending | A boolean value that indicates the sorting direction for the component. | String |
| autoFilter | Experimental A boolean value indicating if the component should apply filter automatically. | String |
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| cellImageURL | An url string pointing to the image. | String |
| cellStyleClass | A space-separated list of CSS style class(es) to be applied when this cell is rendered. This value will be passed through as the "class" attribute on generated markup. | String |
| cellToolTipText | A string value containing the text that will appear when the pointer hover the component. | String |
| converter | The converter id to use. as specified in faces-config.xml. | String |
| defaultCellImageURL | An url string pointing to the default image. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| maxWidth | An int value specifying the maximum width in pixels (if resizeable). | String |
| minWidth | An int value specifying the minimum width in pixels (if resizeable). | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| resizable | A boolean value indicating wether the component can be resized by the user. | String |
| sortComparator | A string value specifying the "compare" function to use. it can reference a javascript function or a keyword : <ul><li> integer </li><li> number </li><li> alpha </li><li> alphaIgnoreCase </li><li> time </li><li> date </li><li> <javascript function> </li></ul> | String |
| sortListener | Executed when the component is sorted. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| text | A string value specifying the text (literal or binding) to be shown. | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| value | A string value holding the current value of the component. | String |
| verticalAlign | A string that represent the vertical alignement of the data in the component. <ul><li> top </li><li> center </li><li> bottom </li></ul> | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
<p>The dataGrid Component is a grid component. It can be compared to the grid found in the list part of the modern file explorer. It allows sorts, resizing, contextual menus ...</p> <p>The dataGrid Component has the following capabilities : <ul> <li>Position & Size</li> <li>Foreground & Background Color</li> <li>Text, font & images</li> <li>Margin & border</li> <li>Help</li> <li>Visibility, Read-Only, Disabled</li> <li>Events Handling</li> <li>Contextual actions in cell, row or table scope</li> <li>...</li> </ul> </p>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| action | A string that indicates the url to activate on the server when the component is actionned through a key mapping on the faces config file. | String |
| actionListener | Executed when the the component is activated by the user. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| blurListener | Executed when the focus quits the component. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| border | A boolean value that indicates if the component should show a border or not. | String |
| checkCardinality | A string indicating the cardinality (number of check allowed) for this componenent. | String |
| checkListener | Executed when the component is checked. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| checkable | A boolean value indcating wether the component can be checked. cf. checkCardinality. | String |
| checkedValues | A table of the values associated with checked nodes for the component. (Binding only) | String |
| clientCheckFullState | A boolean value indicating wether the client should know about the component's full state even if only a part of the data is present (AJAX). | String |
| clientSelectionFullState | A boolean value indicating wether the client should know about the component's full state even if only a part of the data is present (AJAX). | String |
| columnsOrder | A list of the columns' id which represents their order from left to right. | String |
| disabled | A boolean value that represents the disabled state of the component. | String |
| doubleClickListener | Executed when the component is double-clicked. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| filterProperties | A binded object that hold the filters to use on the server side. This property is often set via javascript code. | String |
| first | A number identifying the row to be displayed at the top of the component. | String |
| focusListener | Executed when the component gets the focus. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| headerVisible | A boolean value indicating wether the header should be visible. | String |
| height | A string value (as specified by CSS) for the height of the component. | String |
| helpMessage | A string value specifying the message to be shown by a <a href="/comps/helpMessageZoneComponent.html">helpMessageZone Component</a>. | String |
| helpURL | An URL that points to a help page for the component. it is used for example by a <a href="/comps/helpButtonComponent.html">helpButton Component</a>. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| horizontalScrollPosition | A string value specifying the position of the horizontal scroolbar. | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| initListener | Executed when the component is intialized. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyDownListener | Executed when the component detects a key down event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyPressListener | Executed when the component detects a key pressed event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyUpListener | Executed when the component detects a key up event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| lookId | A string value specifying the choosen look of the component. | String |
| marginBottom | A string value specifying the margin size for the component's bottom (compliant to CSS margin-bottom). | String |
| marginLeft | A string value specifying the margin size for the component's left (compliant to CSS margin-left). | String |
| marginRight | A string value specifying the margin size for the component's right (compliant to CSS margin-right). | String |
| marginTop | A string value specifying the margin size for the component's top (compliant to CSS margin-top). | String |
| margins | A string value specifying the margins for the component (compliant to CSS margin). | String |
| mouseOutListener | Executed when the pointer leaves the area of the component. A string that represent a javascript expression to evaluate. | String |
| mouseOverListener | Executed when the pointer hover the component's area. A string that represent a javascript expression to evaluate. | String |
| paged | A boolean value specifying wether the results should be displayed by page (thus letting the user choose what page to display via the pager). It is ignored if the attribute "rows" is undefined. The default value is true. If "rows" is defined and "paged"'s value is set to false, pages are downloaded automatically when the last displayed row is selected. | String |
| preference | A binded object that holds the preferences for the component. | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| readOnly | A boolean value indicating that this component will prohibit changes by the user. The element may receive focus unless it has also been disabled. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| required | A boolean value indicating that the user is required to provide a submitted value for this input component. | String |
| resetListener | Executed when the reset button is activated on a form. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| rowCountVar | A string value specifying the name of the variable receiving the number of rows. | String |
| rowIndexVar | A string value specifying the name of the variable receiving the index of the current row. | String |
| rowValueColumnId | An id for the column containing the key for the row. | String |
| rows | An int value specifying the number of rows to display, starting with the one identified by the "first" property. If this value is set to zero, all available rows in the underlying data model will be displayed. | String |
| selectable | A boolean value indicating wether the component can receive a user's selection | String |
| selectedValues | A table of the values associated with selected nodes for the component. (Binding only) | String |
| selectionCardinality | A string value specifying the type of multiple selection authorized: <ul><li> zeromany|*: any number of selections or none </li><li> one|1: one and only one selection </li><li> onemany|+: one or more selection </li><li> optionnal|?: none or one selection </li></ul> | String |
| selectionListener | Executed when the component is selected. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| sortedColumnIds | A string value giving the ordered list of the sorted column ids. read-only | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| unlockedClientAttributeNames | A string value holding a comma separated list of the client modifiable properties. | String |
| userEventListener | Executed when the component is called. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| value | A string value holding the current value of the component. | String |
| var | A string value holding the name of a request-scope attribute under which the model data for the row selected by the current value of the "rowIndex" property (i.e. also the current value of the "rowData" property) will be exposed. | String |
| verticalScrollPosition | A string value specifying the position of the vertical scroolbar (Browser dependant). | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
| x | A string value (as specified by CSS) for the x position of the component. | String |
| y | A string value (as specified by CSS) for the x position of the component. | String |
<p>The dateChooser Component is a button that shows a calendar and help the user to choose a date. It can be associated to a entry field, the choosen date is then automatically entered in the field. It works like an <a href="/comps/imageButtonComponent.html">Image Button Component</a>. The dateChooser Component does <b>not</b> provide an Entry field.</p> <p>The dateChooser Component has the following capabilities : <ul> <li>Position & Size</li> <li>Foreground & Background Color</li> <li>Text, font & image</li> <li>Margin & border</li> <li>Help</li> <li>Visibility, Read-Only, Disabled</li> <li>Events Handling</li> <li>Association with another component</li> </ul> </p>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| accessKey | A string that indicates the alphanumeric key used to execute an action from the keyboard (in conjunction with a alteration key ex : Alt). | String |
| attributesLocale | A string value that indicates the locale associated with the component. | String |
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| blurListener | Executed when the focus quits the component. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| border | A boolean value that indicates if the component should show a border or not. | String |
| borderType | A string that indicates the type of border the component should show. Check for availability for a particular component. | String |
| clientDatesStrategy | A string indicating the AJAX transfert strategy for the calendar component : the dates' characteristics (styleClass, toolTip ...). Those characteristics can be retrieved by month, year or totally. | String |
| converter | The converter id to use. as specified in faces-config.xml. | String |
| disabled | A boolean value that represents the disabled state of the component. | String |
| disabledImageURL | An url string pointing to the image used for the disabled state. | String |
| disabledWeekDays | A list of disabled week days (depending on the locale specified for the component). | String |
| focusListener | Executed when the component gets the focus. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| fontBold | A boolean value indicating the <i>bold</i> property for the specified font. | String |
| fontItalic | A boolean value indicating the <i>italic</i> property for the specified font. | String |
| fontName | A string value indicating the name of the font used for this component. | String |
| fontSize | A string indicating the size to use for the selected font. (or any other CSS accepted value for font size). <br/> values [xx-small|x-small|small|medium|large|x-large|xx-large|smaller|larger|<i>length</i> for example 10px|<i>%</i>] | String |
| fontUnderline | A boolean value indicating the <i>underline</i> property for the specified font. | String |
| for | A component's id that express the link between the two components. | String |
| forValueFormat | A string specifying the format to use for the value that will be send to the component specified in the <b>for</b> property. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| height | A string value (as specified by CSS) for the height of the component. | String |
| helpMessage | A string value specifying the message to be shown by a <a href="/comps/helpMessageZoneComponent.html">helpMessageZone Component</a>. | String |
| helpURL | An URL that points to a help page for the component. it is used for example by a <a href="/comps/helpButtonComponent.html">helpButton Component</a>. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| homeDate | A string indicating the date selected when the "home" button is pressed. Authorized values are : <ul><li> today : the current day with time = 00:00 </li><li> now : the current day with the current time for the locale specified for the component </li><li> yesterday : the previous day with time = 00:00 </li><li> tomorrow : the following day with time = 00:00 </li><li> a date : depending on the locale specified for the component </li></ul> | String |
| homeDateLabel | A string specifying the label associated with the home button. | String |
| hoverImageURL | An url string pointing to the image used chen the pointer hover the component. | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| imageHeight | An int value specifying the height (in pixels) to use for the image shown. | String |
| imageURL | An url string pointing to the image used by the component. | String |
| imageWidth | An int value specifying the width (in pixels) to use for the image shown. | String |
| immediate | A boolean value indicating that this component's value must be converted and validated immediately (that is, during Apply Request Values phase), rather than waiting until Process Validations phase. | String |
| initListener | Executed when the component is intialized. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyDownListener | Executed when the component detects a key down event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyPressListener | Executed when the component detects a key pressed event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyUpListener | Executed when the component detects a key up event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| lookId | A string value specifying the choosen look of the component. | String |
| marginBottom | A string value specifying the margin size for the component's bottom (compliant to CSS margin-bottom). | String |
| marginLeft | A string value specifying the margin size for the component's left (compliant to CSS margin-left). | String |
| marginRight | A string value specifying the margin size for the component's right (compliant to CSS margin-right). | String |
| marginTop | A string value specifying the margin size for the component's top (compliant to CSS margin-top). | String |
| margins | A string value specifying the margins for the component (compliant to CSS margin). | String |
| maxDate | A date value indicating the maximum acceptable date for the component. The last accepted value is maxDate minus one day. | String |
| minDate | A date value indicating the minimum acceptable date for the component. the first accepted value is minDate plus one day. | String |
| mouseOutListener | Executed when the pointer leaves the area of the component. A string that represent a javascript expression to evaluate. | String |
| mouseOverListener | Executed when the pointer hover the component's area. A string that represent a javascript expression to evaluate. | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| readOnly | A boolean value indicating that this component will prohibit changes by the user. The element may receive focus unless it has also been disabled. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| selectedImageURL | An url string pointing to the image used when the component is selected. | String |
| selectionListener | Executed when the component is selected. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| tabIndex | An int value specifying the position of this element in the tabbing order for the current document. This value must be an integer between 0 and 32767. | String |
| text | A string value specifying the text (literal or binding) to be shown. | String |
| textAlignment | A string value specifying the alignement for the text in the component : <ul><li> left </li><li> right </li><li> center </li></ul> | String |
| textPosition | A string value specifying the position of the text in the component : <ul><li> left </li><li> right </li><li> top </li><li> bottom </li></ul> | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| twoDigitYearStart | A string value specifying the year considered as base for selecting a date when the associated dateEntry's value's year has only two digits. | String |
| unlockedClientAttributeNames | A string value holding a comma separated list of the client modifiable properties. | String |
| userEventListener | Executed when the component is called. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| value | A string value holding the current value of the component. | String |
| valueChangeListener | Executed when the component's value is changed. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
| x | A string value (as specified by CSS) for the x position of the component. | String |
| y | A string value (as specified by CSS) for the x position of the component. | String |
<p>The dateEntry Component is a specialized <a href="/comps/textEntryComponent.html">textEntry Component</a>. it sports auto-completion related to the validity of the numbers entered as a date.</p> <p>The dateEntry Component has the following capabilities : <ul> <li>Position & Size</li> <li>Foreground & Background Color</li> <li>Text, font & separators</li> <li>Margin & border</li> <li>Help</li> <li>Visibility, Read-Only, Disabled</li> <li>Events Handling</li> <li>Calendar functions</li> </ul> </p>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| accessKey | A string that indicates the alphanumeric key used to execute an action from the keyboard (in conjunction with a alteration key ex : Alt). | String |
| action | A string that indicates the url to activate on the server when the component is actionned through a key mapping on the faces config file. | String |
| actionListener | Executed when the the component is activated by the user. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| attributesLocale | A string value that indicates the locale associated with the component. | String |
| autoCompletion | A boolean value indicating if the component should complete automaticaly the user entry. | String |
| autoTab | A boolean value indicating if the focus should move automatically to the next element when the entry is completed. | String |
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| blurListener | Executed when the focus quits the component. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| clientDatesStrategy | A string indicating the AJAX transfert strategy for the calendar component : the dates' characteristics (styleClass, toolTip ...). Those characteristics can be retrieved by month, year or totally. | String |
| converter | The converter id to use. as specified in faces-config.xml. | String |
| dateFormat | A string specifying the format to apply to the date value. | String |
| defaultDate | The date selected by default. | String |
| disabled | A boolean value that represents the disabled state of the component. | String |
| disabledWeekDays | A list of disabled week days (depending on the locale specified for the component). | String |
| focusListener | Executed when the component gets the focus. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| focusStyleClass | A space-separated list of CSS style classes to be applied when this component get the focus. This value will be passed through as the "class" attribute on generated markup. | String |
| fontBold | A boolean value indicating the <i>bold</i> property for the specified font. | String |
| fontItalic | A boolean value indicating the <i>italic</i> property for the specified font. | String |
| fontName | A string value indicating the name of the font used for this component. | String |
| fontSize | A string indicating the size to use for the selected font. (or any other CSS accepted value for font size). <br/> values [xx-small|x-small|small|medium|large|x-large|xx-large|smaller|larger|<i>length</i> for example 10px|<i>%</i>] | String |
| fontUnderline | A boolean value indicating the <i>underline</i> property for the specified font. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| height | A string value (as specified by CSS) for the height of the component. | String |
| helpMessage | A string value specifying the message to be shown by a <a href="/comps/helpMessageZoneComponent.html">helpMessageZone Component</a>. | String |
| helpURL | An URL that points to a help page for the component. it is used for example by a <a href="/comps/helpButtonComponent.html">helpButton Component</a>. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| immediate | A boolean value indicating that this component's value must be converted and validated immediately (that is, during Apply Request Values phase), rather than waiting until Process Validations phase. | String |
| initListener | Executed when the component is intialized. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyDownListener | Executed when the component detects a key down event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyPressListener | Executed when the component detects a key pressed event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyUpListener | Executed when the component detects a key up event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| lookId | A string value specifying the choosen look of the component. | String |
| marginBottom | A string value specifying the margin size for the component's bottom (compliant to CSS margin-bottom). | String |
| marginLeft | A string value specifying the margin size for the component's left (compliant to CSS margin-left). | String |
| marginRight | A string value specifying the margin size for the component's right (compliant to CSS margin-right). | String |
| marginTop | A string value specifying the margin size for the component's top (compliant to CSS margin-top). | String |
| margins | A string value specifying the margins for the component (compliant to CSS margin). | String |
| maxDate | A date value indicating the maximum acceptable date for the component. The last accepted value is maxDate minus one day. | String |
| minDate | A date value indicating the minimum acceptable date for the component. the first accepted value is minDate plus one day. | String |
| mouseOutListener | Executed when the pointer leaves the area of the component. A string that represent a javascript expression to evaluate. | String |
| mouseOverListener | Executed when the pointer hover the component's area. A string that represent a javascript expression to evaluate. | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| readOnly | A boolean value indicating that this component will prohibit changes by the user. The element may receive focus unless it has also been disabled. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| required | A boolean value indicating that the user is required to provide a submitted value for this input component. | String |
| selectionListener | Executed when the component is selected. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| showCalendarOnFocus | A boolean value indicating wether the associated <a href="/comps/dateCHooserComponent.html">dateChooser Component</a> should be automatically opened when the component gets the focus. | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| tabIndex | An int value specifying the position of this element in the tabbing order for the current document. This value must be an integer between 0 and 32767. | String |
| textAlignment | A string value specifying the alignement for the text in the component : <ul><li> left </li><li> right </li><li> center </li></ul> | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| twoDigitYearStart | A string value specifying the year considered as base for selecting a date when the associated dateEntry's value's year has only two digits. | String |
| unlockedClientAttributeNames | A string value holding a comma separated list of the client modifiable properties. | String |
| userEventListener | Executed when the component is called. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| value | A string value holding the current value of the component. | String |
| valueChangeListener | Executed when the component's value is changed. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
| x | A string value (as specified by CSS) for the x position of the component. | String |
| y | A string value (as specified by CSS) for the x position of the component. | String |
An item specialized for date values.
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| date | The date value. (format : according the the declared locale) | String |
| disabled | A boolean value that represents the disabled state of the component. | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| itemDescription | A string value describing the item. | String |
| itemDisabled | A boolean value indicating whether the option created by this component is disabled. Expressions must evaluate to a boolean. Default value is false. | String |
| itemLabel | A string value specifying the label to be displayed to the user for this option. | String |
| itemValue | A string value to be returned to the server if this option is selected by the user. | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| text | A string value specifying the text (literal or binding) to be shown. | String |
<p>The expandBar Component is a container that can be collapsed to show only a title bar. Expand Bars can be managed by group : only one element of the group is expanded.</p> <p>The expandBar Component has the following capabilities : <ul> <li>Position & Size</li> <li>Foreground & Background Color</li> <li>Text, font & image</li> <li>Margin & border</li> <li>Help</li> <li>Visibility</li> <li>Background Image</li> <li>Events Handling</li> <li>Contextual Menu</li> <li>Async Render (AJAX)</li> </ul> </p>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| accessKey | A string that indicates the alphanumeric key used to execute an action from the keyboard (in conjunction with a alteration key ex : Alt). | String |
| asyncRenderMode | A string that indicates the rendering mode for asynchronous capable component. <LI> <UL> If value is "none", the rendering is synchronous (made with the englobing page rendering). </UL> <UL> If value is "buffer", the rendering is calculated with the page and may contains HTML elements, it is sent to the client only when needed (asynchrponously). </UL> <UL> If value is "tree", the rendering is calculated only when needed (the HTML elements are ignored) </UL> </LI> | String |
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| blurListener | Executed when the focus quits the component. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| border | A boolean value that indicates if the component should show a border or not. | String |
| collapseEffect | A string value indicating the effect to use when transionning from one state to the other. The provided effects are slideUp and slideUpTrans but the list can be augmented. | String |
| collapsed | A boolean value indicating wether the component is collapsed. | String |
| collapsedText | A string value specifying the text to show when the component is collapsed. | String |
| converter | The converter id to use. as specified in faces-config.xml. | String |
| disabled | A boolean value that represents the disabled state of the component. | String |
| focusListener | Executed when the component gets the focus. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| fontBold | A boolean value indicating the <i>bold</i> property for the specified font. | String |
| fontItalic | A boolean value indicating the <i>italic</i> property for the specified font. | String |
| fontName | A string value indicating the name of the font used for this component. | String |
| fontSize | A string indicating the size to use for the selected font. (or any other CSS accepted value for font size). <br/> values [xx-small|x-small|small|medium|large|x-large|xx-large|smaller|larger|<i>length</i> for example 10px|<i>%</i>] | String |
| fontUnderline | A boolean value indicating the <i>underline</i> property for the specified font. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| groupName | A string specifying the name of the virtual entity that links different components together. | String |
| height | A string value (as specified by CSS) for the height of the component. | String |
| helpMessage | A string value specifying the message to be shown by a <a href="/comps/helpMessageZoneComponent.html">helpMessageZone Component</a>. | String |
| helpURL | An URL that points to a help page for the component. it is used for example by a <a href="/comps/helpButtonComponent.html">helpButton Component</a>. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| initListener | Executed when the component is intialized. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| loadListener | Executed when the component is fully loaded (similar to init for AJAX). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| lookId | A string value specifying the choosen look of the component. | String |
| marginBottom | A string value specifying the margin size for the component's bottom (compliant to CSS margin-bottom). | String |
| marginLeft | A string value specifying the margin size for the component's left (compliant to CSS margin-left). | String |
| marginRight | A string value specifying the margin size for the component's right (compliant to CSS margin-right). | String |
| marginTop | A string value specifying the margin size for the component's top (compliant to CSS margin-top). | String |
| margins | A string value specifying the margins for the component (compliant to CSS margin). | String |
| mouseOutListener | Executed when the pointer leaves the area of the component. A string that represent a javascript expression to evaluate. | String |
| mouseOverListener | Executed when the pointer hover the component's area. A string that represent a javascript expression to evaluate. | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| readOnly | A boolean value indicating that this component will prohibit changes by the user. The element may receive focus unless it has also been disabled. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| scopeValue | A string value specifying the binding associated to a variable representing a shortcut. (cf. scopeVar) ex: if scopeVar "bat" is associated to scopeValue "bean.attribute1.attribute2" then the use of "bat.attribute3" will be equivalente to "bean.attribute1.attribute2.attribute3" | String |
| scopeVar | A string value specifying the name of a variable representing a shortcut to a binding. (cf. scopeValue) ex: if scopeVar "bat" is associated to scopeValue "bean.attribute1.attribute2" then the use of "bat.attribute3" will be equivalente to "bean.attribute1.attribute2.attribute3" | String |
| selectionListener | Executed when the component is selected. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| tabIndex | An int value specifying the position of this element in the tabbing order for the current document. This value must be an integer between 0 and 32767. | String |
| text | A string value specifying the text (literal or binding) to be shown. | String |
| textAlignment | A string value specifying the alignement for the text in the component : <ul><li> left </li><li> right </li><li> center </li></ul> | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| unlockedClientAttributeNames | A string value holding a comma separated list of the client modifiable properties. | String |
| userEventListener | Executed when the component is called. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| value | A string value holding the current value of the component. | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
| x | A string value (as specified by CSS) for the x position of the component. | String |
| y | A string value (as specified by CSS) for the x position of the component. | String |
<p>The fieldSet Component is a container with a title (text and/or picture).</p> <p>The fieldSet Component has the following capabilities : <ul> <li>Position & Size</li> <li>Foreground & Background Color</li> <li>Text, font & image</li> <li>Margin & border</li> <li>Help</li> <li>Visibility</li> <li>Background Image</li> <li>Events Handling</li> <li>Contextual Menu</li> <li>Async Render (AJAX)</li> </ul> </p>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| borderType | A string that indicates the type of border the component should show. Check for availability for a particular component. | String |
| converter | The converter id to use. as specified in faces-config.xml. | String |
| fontBold | A boolean value indicating the <i>bold</i> property for the specified font. | String |
| fontItalic | A boolean value indicating the <i>italic</i> property for the specified font. | String |
| fontName | A string value indicating the name of the font used for this component. | String |
| fontSize | A string indicating the size to use for the selected font. (or any other CSS accepted value for font size). <br/> values [xx-small|x-small|small|medium|large|x-large|xx-large|smaller|larger|<i>length</i> for example 10px|<i>%</i>] | String |
| fontUnderline | A boolean value indicating the <i>underline</i> property for the specified font. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| height | A string value (as specified by CSS) for the height of the component. | String |
| helpMessage | A string value specifying the message to be shown by a <a href="/comps/helpMessageZoneComponent.html">helpMessageZone Component</a>. | String |
| helpURL | An URL that points to a help page for the component. it is used for example by a <a href="/comps/helpButtonComponent.html">helpButton Component</a>. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| imageHeight | An int value specifying the height (in pixels) to use for the image shown. | String |
| imageURL | An url string pointing to the image used by the component. | String |
| imageWidth | An int value specifying the width (in pixels) to use for the image shown. | String |
| initListener | Executed when the component is intialized. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| lookId | A string value specifying the choosen look of the component. | String |
| marginBottom | A string value specifying the margin size for the component's bottom (compliant to CSS margin-bottom). | String |
| marginLeft | A string value specifying the margin size for the component's left (compliant to CSS margin-left). | String |
| marginRight | A string value specifying the margin size for the component's right (compliant to CSS margin-right). | String |
| marginTop | A string value specifying the margin size for the component's top (compliant to CSS margin-top). | String |
| margins | A string value specifying the margins for the component (compliant to CSS margin). | String |
| mouseOutListener | Executed when the pointer leaves the area of the component. A string that represent a javascript expression to evaluate. | String |
| mouseOverListener | Executed when the pointer hover the component's area. A string that represent a javascript expression to evaluate. | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| scopeValue | A string value specifying the binding associated to a variable representing a shortcut. (cf. scopeVar) ex: if scopeVar "bat" is associated to scopeValue "bean.attribute1.attribute2" then the use of "bat.attribute3" will be equivalente to "bean.attribute1.attribute2.attribute3" | String |
| scopeVar | A string value specifying the name of a variable representing a shortcut to a binding. (cf. scopeValue) ex: if scopeVar "bat" is associated to scopeValue "bean.attribute1.attribute2" then the use of "bat.attribute3" will be equivalente to "bean.attribute1.attribute2.attribute3" | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| text | A string value specifying the text (literal or binding) to be shown. | String |
| textAlignment | A string value specifying the alignement for the text in the component : <ul><li> left </li><li> right </li><li> center </li></ul> | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| unlockedClientAttributeNames | A string value holding a comma separated list of the client modifiable properties. | String |
| userEventListener | Executed when the component is called. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| value | A string value holding the current value of the component. | String |
| verticalAlignment | A string that represent the vertical alignement of the data in the component. <ul><li> top </li><li> center </li><li> bottom </li></ul> | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
| x | A string value (as specified by CSS) for the x position of the component. | String |
| y | A string value (as specified by CSS) for the x position of the component. | String |
<p>The focusManager Component is a non-visual component.</p> <p>It allows to deal with the focus on the current page.</p>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| focusId | A component's id. This component will get the focus. | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
<p>The helpButton Component is an <A href="/comps/imageButtonComponent.html">ImageButton</A>. It opens a new page showing the url specified in the "helpUrl" property of a component linked by the "for" property.</p> <p>The helpButton Component has the following capabilities : <ul> <li>Position & Size</li> <li>Foreground & Background Color</li> <li>Text, font & image</li> <li>Margin & border</li> <li>Help</li> <li>Visibility, Read-Only, Disabled</li> <li>Events Handling</li> <li>Association with another component</li> </ul> </p>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| accessKey | A string that indicates the alphanumeric key used to execute an action from the keyboard (in conjunction with a alteration key ex : Alt). | String |
| action | A string that indicates the url to activate on the server when the component is actionned through a key mapping on the faces config file. | String |
| actionListener | Executed when the the component is activated by the user. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| blurListener | Executed when the focus quits the component. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| border | A boolean value that indicates if the component should show a border or not. | String |
| borderType | A string that indicates the type of border the component should show. Check for availability for a particular component. | String |
| disabled | A boolean value that represents the disabled state of the component. | String |
| disabledImageURL | An url string pointing to the image used for the disabled state. | String |
| focusListener | Executed when the component gets the focus. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| fontBold | A boolean value indicating the <i>bold</i> property for the specified font. | String |
| fontItalic | A boolean value indicating the <i>italic</i> property for the specified font. | String |
| fontName | A string value indicating the name of the font used for this component. | String |
| fontSize | A string indicating the size to use for the selected font. (or any other CSS accepted value for font size). <br/> values [xx-small|x-small|small|medium|large|x-large|xx-large|smaller|larger|<i>length</i> for example 10px|<i>%</i>] | String |
| fontUnderline | A boolean value indicating the <i>underline</i> property for the specified font. | String |
| for | A component's id that express the link between the two components. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| height | A string value (as specified by CSS) for the height of the component. | String |
| helpMessage | A string value specifying the message to be shown by a <a href="/comps/helpMessageZoneComponent.html">helpMessageZone Component</a>. | String |
| helpURL | An URL that points to a help page for the component. it is used for example by a <a href="/comps/helpButtonComponent.html">helpButton Component</a>. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| hoverImageURL | An url string pointing to the image used chen the pointer hover the component. | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| imageHeight | An int value specifying the height (in pixels) to use for the image shown. | String |
| imageURL | An url string pointing to the image used by the component. | String |
| imageWidth | An int value specifying the width (in pixels) to use for the image shown. | String |
| immediate | A boolean value indicating that this component's value must be converted and validated immediately (that is, during Apply Request Values phase), rather than waiting until Process Validations phase. | String |
| initListener | Executed when the component is intialized. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| lookId | A string value specifying the choosen look of the component. | String |
| marginBottom | A string value specifying the margin size for the component's bottom (compliant to CSS margin-bottom). | String |
| marginLeft | A string value specifying the margin size for the component's left (compliant to CSS margin-left). | String |
| marginRight | A string value specifying the margin size for the component's right (compliant to CSS margin-right). | String |
| marginTop | A string value specifying the margin size for the component's top (compliant to CSS margin-top). | String |
| margins | A string value specifying the margins for the component (compliant to CSS margin). | String |
| mouseOutListener | Executed when the pointer leaves the area of the component. A string that represent a javascript expression to evaluate. | String |
| mouseOverListener | Executed when the pointer hover the component's area. A string that represent a javascript expression to evaluate. | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| readOnly | A boolean value indicating that this component will prohibit changes by the user. The element may receive focus unless it has also been disabled. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| selectedImageURL | An url string pointing to the image used when the component is selected. | String |
| selectionListener | Executed when the component is selected. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| tabIndex | An int value specifying the position of this element in the tabbing order for the current document. This value must be an integer between 0 and 32767. | String |
| text | A string value specifying the text (literal or binding) to be shown. | String |
| textAlignment | A string value specifying the alignement for the text in the component : <ul><li> left </li><li> right </li><li> center </li></ul> | String |
| textPosition | A string value specifying the position of the text in the component : <ul><li> left </li><li> right </li><li> top </li><li> bottom </li></ul> | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| unlockedClientAttributeNames | A string value holding a comma separated list of the client modifiable properties. | String |
| userEventListener | Executed when the component is called. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| value | A string value holding the current value of the component. | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
| x | A string value (as specified by CSS) for the x position of the component. | String |
| y | A string value (as specified by CSS) for the x position of the component. | String |
<p>The helpMessageZone Component is a placeholder for help messages. The messages are shown when the pointer hover a component and this component has a "helpMessage" property.</p> <p>The helpMessageZone Component has the following capabilities : <ul> <li>Position & Size</li> <li>Foreground & Background Color</li> <li>Text, font & position</li> <li>Margin & border</li> <li>Help</li> <li>Visibility</li> <li>Events Handling</li> </ul> </p>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| converter | The converter id to use. as specified in faces-config.xml. | String |
| fontBold | A boolean value indicating the <i>bold</i> property for the specified font. | String |
| fontItalic | A boolean value indicating the <i>italic</i> property for the specified font. | String |
| fontName | A string value indicating the name of the font used for this component. | String |
| fontSize | A string indicating the size to use for the selected font. (or any other CSS accepted value for font size). <br/> values [xx-small|x-small|small|medium|large|x-large|xx-large|smaller|larger|<i>length</i> for example 10px|<i>%</i>] | String |
| fontUnderline | A boolean value indicating the <i>underline</i> property for the specified font. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| height | A string value (as specified by CSS) for the height of the component. | String |
| helpMessage | A string value specifying the message to be shown by a <a href="/comps/helpMessageZoneComponent.html">helpMessageZone Component</a>. | String |
| helpURL | An URL that points to a help page for the component. it is used for example by a <a href="/comps/helpButtonComponent.html">helpButton Component</a>. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| initListener | Executed when the component is intialized. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| lookId | A string value specifying the choosen look of the component. | String |
| marginBottom | A string value specifying the margin size for the component's bottom (compliant to CSS margin-bottom). | String |
| marginLeft | A string value specifying the margin size for the component's left (compliant to CSS margin-left). | String |
| marginRight | A string value specifying the margin size for the component's right (compliant to CSS margin-right). | String |
| marginTop | A string value specifying the margin size for the component's top (compliant to CSS margin-top). | String |
| margins | A string value specifying the margins for the component (compliant to CSS margin). | String |
| mouseOutListener | Executed when the pointer leaves the area of the component. A string that represent a javascript expression to evaluate. | String |
| mouseOverListener | Executed when the pointer hover the component's area. A string that represent a javascript expression to evaluate. | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| text | A string value specifying the text (literal or binding) to be shown. | String |
| textAlignment | A string value specifying the alignement for the text in the component : <ul><li> left </li><li> right </li><li> center </li></ul> | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| unlockedClientAttributeNames | A string value holding a comma separated list of the client modifiable properties. | String |
| userEventListener | Executed when the component is called. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| value | A string value holding the current value of the component. | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
| x | A string value (as specified by CSS) for the x position of the component. | String |
| y | A string value (as specified by CSS) for the x position of the component. | String |
<p>The hiddenValue Component is a non-visual component. It is equivalent to and Input hidden type HTML tag.</p> <p>It allows to access and store value on the client and on the server while keeping it concealed. The clientData Component can also be used.</p> <p>The hiddenValue Component has the following capability : <ul> <li>Property changed Event handling</li> </ul> </p>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| converter | The converter id to use. as specified in faces-config.xml. | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| immediate | A boolean value indicating that this component's value must be converted and validated immediately (that is, during Apply Request Values phase), rather than waiting until Process Validations phase. | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| value | A string value holding the current value of the component. | String |
<p>The hyperLink Component translates into a classic hyperlink and is a <A href="/comps/buttonComponent.html">button</A>.</p> <p>The hyperLink Component has the following capabilities : <ul> <li>Position & Size</li> <li>Foreground & Background Color</li> <li>Text, font & image</li> <li>Help</li> <li>Visibility, Read-Only, Disabled</li> <li>Events Handling</li> </ul> </p>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| accessKey | A string that indicates the alphanumeric key used to execute an action from the keyboard (in conjunction with a alteration key ex : Alt). | String |
| action | A string that indicates the url to activate on the server when the component is actionned through a key mapping on the faces config file. | String |
| actionListener | Executed when the the component is activated by the user. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| blurListener | Executed when the focus quits the component. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| disabled | A boolean value that represents the disabled state of the component. | String |
| focusListener | Executed when the component gets the focus. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| fontBold | A boolean value indicating the <i>bold</i> property for the specified font. | String |
| fontItalic | A boolean value indicating the <i>italic</i> property for the specified font. | String |
| fontName | A string value indicating the name of the font used for this component. | String |
| fontSize | A string indicating the size to use for the selected font. (or any other CSS accepted value for font size). <br/> values [xx-small|x-small|small|medium|large|x-large|xx-large|smaller|larger|<i>length</i> for example 10px|<i>%</i>] | String |
| fontUnderline | A boolean value indicating the <i>underline</i> property for the specified font. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| height | A string value (as specified by CSS) for the height of the component. | String |
| helpMessage | A string value specifying the message to be shown by a <a href="/comps/helpMessageZoneComponent.html">helpMessageZone Component</a>. | String |
| helpURL | An URL that points to a help page for the component. it is used for example by a <a href="/comps/helpButtonComponent.html">helpButton Component</a>. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| immediate | A boolean value indicating that this component's value must be converted and validated immediately (that is, during Apply Request Values phase), rather than waiting until Process Validations phase. | String |
| initListener | Executed when the component is intialized. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| lookId | A string value specifying the choosen look of the component. | String |
| marginBottom | A string value specifying the margin size for the component's bottom (compliant to CSS margin-bottom). | String |
| marginLeft | A string value specifying the margin size for the component's left (compliant to CSS margin-left). | String |
| marginRight | A string value specifying the margin size for the component's right (compliant to CSS margin-right). | String |
| marginTop | A string value specifying the margin size for the component's top (compliant to CSS margin-top). | String |
| margins | A string value specifying the margins for the component (compliant to CSS margin). | String |
| mouseOutListener | Executed when the pointer leaves the area of the component. A string that represent a javascript expression to evaluate. | String |
| mouseOverListener | Executed when the pointer hover the component's area. A string that represent a javascript expression to evaluate. | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| readOnly | A boolean value indicating that this component will prohibit changes by the user. The element may receive focus unless it has also been disabled. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| selectionListener | Executed when the component is selected. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| tabIndex | An int value specifying the position of this element in the tabbing order for the current document. This value must be an integer between 0 and 32767. | String |
| text | A string value specifying the text (literal or binding) to be shown. | String |
| textAlignment | A string value specifying the alignement for the text in the component : <ul><li> left </li><li> right </li><li> center </li></ul> | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| unlockedClientAttributeNames | A string value holding a comma separated list of the client modifiable properties. | String |
| userEventListener | Executed when the component is called. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| value | A string value holding the current value of the component. | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
| x | A string value (as specified by CSS) for the x position of the component. | String |
| y | A string value (as specified by CSS) for the x position of the component. | String |
<p>The image Component shows an image (it's equivalent to <img .../>).</p> <p>The image Component has the following capabilities : <ul> <li>Position & Size</li> <li>Foreground & Background Color</li> <li>Image</li> <li>Margin</li> <li>Help</li> <li>Visibility</li> <li>Events Handling</li> </ul> </p>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| converter | The converter id to use. as specified in faces-config.xml. | String |
| filterProperties | A binded object that hold the filters to use on the server side. This property is often set via javascript code. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| height | A string value (as specified by CSS) for the height of the component. | String |
| helpMessage | A string value specifying the message to be shown by a <a href="/comps/helpMessageZoneComponent.html">helpMessageZone Component</a>. | String |
| helpURL | An URL that points to a help page for the component. it is used for example by a <a href="/comps/helpButtonComponent.html">helpButton Component</a>. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| imageHeight | An int value specifying the height (in pixels) to use for the image shown. | String |
| imageURL | An url string pointing to the image used by the component. | String |
| imageWidth | An int value specifying the width (in pixels) to use for the image shown. | String |
| initListener | Executed when the component is intialized. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| lookId | A string value specifying the choosen look of the component. | String |
| marginBottom | A string value specifying the margin size for the component's bottom (compliant to CSS margin-bottom). | String |
| marginLeft | A string value specifying the margin size for the component's left (compliant to CSS margin-left). | String |
| marginRight | A string value specifying the margin size for the component's right (compliant to CSS margin-right). | String |
| marginTop | A string value specifying the margin size for the component's top (compliant to CSS margin-top). | String |
| margins | A string value specifying the margins for the component (compliant to CSS margin). | String |
| mouseOutListener | Executed when the pointer leaves the area of the component. A string that represent a javascript expression to evaluate. | String |
| mouseOverListener | Executed when the pointer hover the component's area. A string that represent a javascript expression to evaluate. | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| unlockedClientAttributeNames | A string value holding a comma separated list of the client modifiable properties. | String |
| userEventListener | Executed when the component is called. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| value | A string value holding the current value of the component. | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
| x | A string value (as specified by CSS) for the x position of the component. | String |
| y | A string value (as specified by CSS) for the x position of the component. | String |
<p>The imageButton Component is a <a href="/comps/buttonComponent.html">button Component</a> that can show an image.</p> <p>The imageButton Component has the following capabilities : <ul> <li>Position & Size</li> <li>Foreground & Background Color</li> <li>Text, font & image</li> <li>Margin & border</li> <li>Help</li> <li>Visibility, Read-Only, Disabled</li> <li>Events Handling</li> </ul> </p>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| accessKey | A string that indicates the alphanumeric key used to execute an action from the keyboard (in conjunction with a alteration key ex : Alt). | String |
| action | A string that indicates the url to activate on the server when the component is actionned through a key mapping on the faces config file. | String |
| actionListener | Executed when the the component is activated by the user. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| blurListener | Executed when the focus quits the component. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| border | A boolean value that indicates if the component should show a border or not. | String |
| borderType | A string that indicates the type of border the component should show. Check for availability for a particular component. | String |
| disabled | A boolean value that represents the disabled state of the component. | String |
| disabledImageURL | An url string pointing to the image used for the disabled state. | String |
| focusListener | Executed when the component gets the focus. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| fontBold | A boolean value indicating the <i>bold</i> property for the specified font. | String |
| fontItalic | A boolean value indicating the <i>italic</i> property for the specified font. | String |
| fontName | A string value indicating the name of the font used for this component. | String |
| fontSize | A string indicating the size to use for the selected font. (or any other CSS accepted value for font size). <br/> values [xx-small|x-small|small|medium|large|x-large|xx-large|smaller|larger|<i>length</i> for example 10px|<i>%</i>] | String |
| fontUnderline | A boolean value indicating the <i>underline</i> property for the specified font. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| height | A string value (as specified by CSS) for the height of the component. | String |
| helpMessage | A string value specifying the message to be shown by a <a href="/comps/helpMessageZoneComponent.html">helpMessageZone Component</a>. | String |
| helpURL | An URL that points to a help page for the component. it is used for example by a <a href="/comps/helpButtonComponent.html">helpButton Component</a>. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| hoverImageURL | An url string pointing to the image used chen the pointer hover the component. | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| imageHeight | An int value specifying the height (in pixels) to use for the image shown. | String |
| imageURL | An url string pointing to the image used by the component. | String |
| imageWidth | An int value specifying the width (in pixels) to use for the image shown. | String |
| immediate | A boolean value indicating that this component's value must be converted and validated immediately (that is, during Apply Request Values phase), rather than waiting until Process Validations phase. | String |
| initListener | Executed when the component is intialized. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| lookId | A string value specifying the choosen look of the component. | String |
| marginBottom | A string value specifying the margin size for the component's bottom (compliant to CSS margin-bottom). | String |
| marginLeft | A string value specifying the margin size for the component's left (compliant to CSS margin-left). | String |
| marginRight | A string value specifying the margin size for the component's right (compliant to CSS margin-right). | String |
| marginTop | A string value specifying the margin size for the component's top (compliant to CSS margin-top). | String |
| margins | A string value specifying the margins for the component (compliant to CSS margin). | String |
| mouseOutListener | Executed when the pointer leaves the area of the component. A string that represent a javascript expression to evaluate. | String |
| mouseOverListener | Executed when the pointer hover the component's area. A string that represent a javascript expression to evaluate. | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| readOnly | A boolean value indicating that this component will prohibit changes by the user. The element may receive focus unless it has also been disabled. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| selectedImageURL | An url string pointing to the image used when the component is selected. | String |
| selectionListener | Executed when the component is selected. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| tabIndex | An int value specifying the position of this element in the tabbing order for the current document. This value must be an integer between 0 and 32767. | String |
| text | A string value specifying the text (literal or binding) to be shown. | String |
| textAlignment | A string value specifying the alignement for the text in the component : <ul><li> left </li><li> right </li><li> center </li></ul> | String |
| textPosition | A string value specifying the position of the text in the component : <ul><li> left </li><li> right </li><li> top </li><li> bottom </li></ul> | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| unlockedClientAttributeNames | A string value holding a comma separated list of the client modifiable properties. | String |
| userEventListener | Executed when the component is called. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| value | A string value holding the current value of the component. | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
| x | A string value (as specified by CSS) for the x position of the component. | String |
| y | A string value (as specified by CSS) for the x position of the component. | String |
<p>The imageCheckButton Component is a <a href="/comps/checkButtonComponent.html">checkButton Component</a> with an image instead of the checkBox.</p> <p>The imageCheckButton Component has the following capabilities : <ul> <li>Position & Size</li> <li>Foreground & Background Color</li> <li>Text, font & image</li> <li>Help</li> <li>Visibility, Read-Only, Disabled</li> <li>Events Handling</li> </ul> </p>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| accessKey | A string that indicates the alphanumeric key used to execute an action from the keyboard (in conjunction with a alteration key ex : Alt). | String |
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| blurListener | Executed when the focus quits the component. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| border | A boolean value that indicates if the component should show a border or not. | String |
| borderType | A string that indicates the type of border the component should show. Check for availability for a particular component. | String |
| converter | The converter id to use. as specified in faces-config.xml. | String |
| disabled | A boolean value that represents the disabled state of the component. | String |
| disabledImageURL | An url string pointing to the image used for the disabled state. | String |
| focusListener | Executed when the component gets the focus. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| fontBold | A boolean value indicating the <i>bold</i> property for the specified font. | String |
| fontItalic | A boolean value indicating the <i>italic</i> property for the specified font. | String |
| fontName | A string value indicating the name of the font used for this component. | String |
| fontSize | A string indicating the size to use for the selected font. (or any other CSS accepted value for font size). <br/> values [xx-small|x-small|small|medium|large|x-large|xx-large|smaller|larger|<i>length</i> for example 10px|<i>%</i>] | String |
| fontUnderline | A boolean value indicating the <i>underline</i> property for the specified font. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| height | A string value (as specified by CSS) for the height of the component. | String |
| helpMessage | A string value specifying the message to be shown by a <a href="/comps/helpMessageZoneComponent.html">helpMessageZone Component</a>. | String |
| helpURL | An URL that points to a help page for the component. it is used for example by a <a href="/comps/helpButtonComponent.html">helpButton Component</a>. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| hoverImageURL | An url string pointing to the image used chen the pointer hover the component. | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| imageHeight | An int value specifying the height (in pixels) to use for the image shown. | String |
| imageURL | An url string pointing to the image used by the component. | String |
| imageWidth | An int value specifying the width (in pixels) to use for the image shown. | String |
| immediate | A boolean value indicating that this component's value must be converted and validated immediately (that is, during Apply Request Values phase), rather than waiting until Process Validations phase. | String |
| initListener | Executed when the component is intialized. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyDownListener | Executed when the component detects a key down event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyPressListener | Executed when the component detects a key pressed event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyUpListener | Executed when the component detects a key up event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| lookId | A string value specifying the choosen look of the component. | String |
| marginBottom | A string value specifying the margin size for the component's bottom (compliant to CSS margin-bottom). | String |
| marginLeft | A string value specifying the margin size for the component's left (compliant to CSS margin-left). | String |
| marginRight | A string value specifying the margin size for the component's right (compliant to CSS margin-right). | String |
| marginTop | A string value specifying the margin size for the component's top (compliant to CSS margin-top). | String |
| margins | A string value specifying the margins for the component (compliant to CSS margin). | String |
| mouseOutListener | Executed when the pointer leaves the area of the component. A string that represent a javascript expression to evaluate. | String |
| mouseOverListener | Executed when the pointer hover the component's area. A string that represent a javascript expression to evaluate. | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| readOnly | A boolean value indicating that this component will prohibit changes by the user. The element may receive focus unless it has also been disabled. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| selected | A boolean value indicating wether the component is selected. | String |
| selectedImageURL | An url string pointing to the image used when the component is selected. | String |
| selectionListener | Executed when the component is selected. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| tabIndex | An int value specifying the position of this element in the tabbing order for the current document. This value must be an integer between 0 and 32767. | String |
| text | A string value specifying the text (literal or binding) to be shown. | String |
| textAlignment | A string value specifying the alignement for the text in the component : <ul><li> left </li><li> right </li><li> center </li></ul> | String |
| textPosition | A string value specifying the position of the text in the component : <ul><li> left </li><li> right </li><li> top </li><li> bottom </li></ul> | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| unlockedClientAttributeNames | A string value holding a comma separated list of the client modifiable properties. | String |
| userEventListener | Executed when the component is called. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| value | A string value holding the current value of the component. | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
| x | A string value (as specified by CSS) for the x position of the component. | String |
| y | A string value (as specified by CSS) for the x position of the component. | String |
<p>The imageCombo Component is a <a href="/comps/comboComponent.html">combo Component</a> with an image added to the text.</p> <p>The imageCombo Component has the following capabilities : <ul> <li>Position & Size</li> <li>Foreground & Background Color</li> <li>Text, font & image</li> <li>Help</li> <li>Visibility, Read-Only, Disabled</li> <li>Events Handling</li> </ul> </p>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| accessKey | A string that indicates the alphanumeric key used to execute an action from the keyboard (in conjunction with a alteration key ex : Alt). | String |
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| blurListener | Executed when the focus quits the component. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| border | A boolean value that indicates if the component should show a border or not. | String |
| borderType | A string that indicates the type of border the component should show. Check for availability for a particular component. | String |
| checkListener | Executed when the component is checked. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| converter | The converter id to use. as specified in faces-config.xml. | String |
| disabled | A boolean value that represents the disabled state of the component. | String |
| disabledImageURL | An url string pointing to the image used for the disabled state. | String |
| focusListener | Executed when the component gets the focus. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| fontBold | A boolean value indicating the <i>bold</i> property for the specified font. | String |
| fontItalic | A boolean value indicating the <i>italic</i> property for the specified font. | String |
| fontName | A string value indicating the name of the font used for this component. | String |
| fontSize | A string indicating the size to use for the selected font. (or any other CSS accepted value for font size). <br/> values [xx-small|x-small|small|medium|large|x-large|xx-large|smaller|larger|<i>length</i> for example 10px|<i>%</i>] | String |
| fontUnderline | A boolean value indicating the <i>underline</i> property for the specified font. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| height | A string value (as specified by CSS) for the height of the component. | String |
| helpMessage | A string value specifying the message to be shown by a <a href="/comps/helpMessageZoneComponent.html">helpMessageZone Component</a>. | String |
| helpURL | An URL that points to a help page for the component. it is used for example by a <a href="/comps/helpButtonComponent.html">helpButton Component</a>. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| hoverImageURL | An url string pointing to the image used chen the pointer hover the component. | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| imageHeight | An int value specifying the height (in pixels) to use for the image shown. | String |
| imageURL | An url string pointing to the image used by the component. | String |
| imageWidth | An int value specifying the width (in pixels) to use for the image shown. | String |
| immediate | A boolean value indicating that this component's value must be converted and validated immediately (that is, during Apply Request Values phase), rather than waiting until Process Validations phase. | String |
| initListener | Executed when the component is intialized. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| lookId | A string value specifying the choosen look of the component. | String |
| marginBottom | A string value specifying the margin size for the component's bottom (compliant to CSS margin-bottom). | String |
| marginLeft | A string value specifying the margin size for the component's left (compliant to CSS margin-left). | String |
| marginRight | A string value specifying the margin size for the component's right (compliant to CSS margin-right). | String |
| marginTop | A string value specifying the margin size for the component's top (compliant to CSS margin-top). | String |
| margins | A string value specifying the margins for the component (compliant to CSS margin). | String |
| mouseOutListener | Executed when the pointer leaves the area of the component. A string that represent a javascript expression to evaluate. | String |
| mouseOverListener | Executed when the pointer hover the component's area. A string that represent a javascript expression to evaluate. | String |
| popupRowNumber | Experimental : do not use! | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| readOnly | A boolean value indicating that this component will prohibit changes by the user. The element may receive focus unless it has also been disabled. | String |
| removeAllWhenShown | A boolean value specifying wether the content of the component must be remove before the listener is called and the component displayed. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| selectedImageURL | An url string pointing to the image used when the component is selected. | String |
| selectionListener | Executed when the component is selected. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| tabIndex | An int value specifying the position of this element in the tabbing order for the current document. This value must be an integer between 0 and 32767. | String |
| text | A string value specifying the text (literal or binding) to be shown. | String |
| textAlignment | A string value specifying the alignement for the text in the component : <ul><li> left </li><li> right </li><li> center </li></ul> | String |
| textPosition | A string value specifying the position of the text in the component : <ul><li> left </li><li> right </li><li> top </li><li> bottom </li></ul> | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| unlockedClientAttributeNames | A string value holding a comma separated list of the client modifiable properties. | String |
| userEventListener | Executed when the component is called. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| value | A string value holding the current value of the component. | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
| x | A string value (as specified by CSS) for the x position of the component. | String |
| y | A string value (as specified by CSS) for the x position of the component. | String |
<p>The imagePagerButton Component is an <a href="/comps/imageButtonComponent.html">imageButton Component</a> that works like the keyword in the <a href="/comps/pagerComponent.html">pager Component</a> and is linked to the <a href="/comps/dataGridComponent.html">dataGrid Component</a>. It shows informations about the result set (ex: number of available pages) and can give direct access to a specific page ("a la Google").</p> <p>The imagePagerButton Component has the following capabilities : <ul> <li>Position & Size</li> <li>Foreground & Background Color</li> <li>Text, font & image</li> <li>Help</li> <li>Visibility, Read-Only, Disabled</li> <li>Events Handling</li> <li>Association with another component</li> </ul> </p> <p>The authorized types are : <ul> <li>first</li> <li>prev</li> <li>next</li> <li>last</li> <li><number> where number is a page number</li> </ul> </p>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| accessKey | A string that indicates the alphanumeric key used to execute an action from the keyboard (in conjunction with a alteration key ex : Alt). | String |
| action | A string that indicates the url to activate on the server when the component is actionned through a key mapping on the faces config file. | String |
| actionListener | Executed when the the component is activated by the user. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| blurListener | Executed when the focus quits the component. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| border | A boolean value that indicates if the component should show a border or not. | String |
| borderType | A string that indicates the type of border the component should show. Check for availability for a particular component. | String |
| disabled | A boolean value that represents the disabled state of the component. | String |
| disabledImageURL | An url string pointing to the image used for the disabled state. | String |
| focusListener | Executed when the component gets the focus. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| fontBold | A boolean value indicating the <i>bold</i> property for the specified font. | String |
| fontItalic | A boolean value indicating the <i>italic</i> property for the specified font. | String |
| fontName | A string value indicating the name of the font used for this component. | String |
| fontSize | A string indicating the size to use for the selected font. (or any other CSS accepted value for font size). <br/> values [xx-small|x-small|small|medium|large|x-large|xx-large|smaller|larger|<i>length</i> for example 10px|<i>%</i>] | String |
| fontUnderline | A boolean value indicating the <i>underline</i> property for the specified font. | String |
| for* | A component's id that express the link between the two components. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| height | A string value (as specified by CSS) for the height of the component. | String |
| helpMessage | A string value specifying the message to be shown by a <a href="/comps/helpMessageZoneComponent.html">helpMessageZone Component</a>. | String |
| helpURL | An URL that points to a help page for the component. it is used for example by a <a href="/comps/helpButtonComponent.html">helpButton Component</a>. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| hideIfDisabled | A boolean value indicating wether the component should be hide when it is not available. | String |
| hoverImageURL | An url string pointing to the image used chen the pointer hover the component. | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| imageHeight | An int value specifying the height (in pixels) to use for the image shown. | String |
| imageURL | An url string pointing to the image used by the component. | String |
| imageWidth | An int value specifying the width (in pixels) to use for the image shown. | String |
| immediate | A boolean value indicating that this component's value must be converted and validated immediately (that is, during Apply Request Values phase), rather than waiting until Process Validations phase. | String |
| initListener | Executed when the component is intialized. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| lookId | A string value specifying the choosen look of the component. | String |
| marginBottom | A string value specifying the margin size for the component's bottom (compliant to CSS margin-bottom). | String |
| marginLeft | A string value specifying the margin size for the component's left (compliant to CSS margin-left). | String |
| marginRight | A string value specifying the margin size for the component's right (compliant to CSS margin-right). | String |
| marginTop | A string value specifying the margin size for the component's top (compliant to CSS margin-top). | String |
| margins | A string value specifying the margins for the component (compliant to CSS margin). | String |
| mouseOutListener | Executed when the pointer leaves the area of the component. A string that represent a javascript expression to evaluate. | String |
| mouseOverListener | Executed when the pointer hover the component's area. A string that represent a javascript expression to evaluate. | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| readOnly | A boolean value indicating that this component will prohibit changes by the user. The element may receive focus unless it has also been disabled. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| selectedImageURL | An url string pointing to the image used when the component is selected. | String |
| selectionListener | Executed when the component is selected. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| tabIndex | An int value specifying the position of this element in the tabbing order for the current document. This value must be an integer between 0 and 32767. | String |
| text | A string value specifying the text (literal or binding) to be shown. | String |
| textAlignment | A string value specifying the alignement for the text in the component : <ul><li> left </li><li> right </li><li> center </li></ul> | String |
| textPosition | A string value specifying the position of the text in the component : <ul><li> left </li><li> right </li><li> top </li><li> bottom </li></ul> | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| type | A string value specifying the type of data (Java) to convert to or from. | String |
| unlockedClientAttributeNames | A string value holding a comma separated list of the client modifiable properties. | String |
| userEventListener | Executed when the component is called. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| value | A string value holding the current value of the component. | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
| x | A string value (as specified by CSS) for the x position of the component. | String |
| y | A string value (as specified by CSS) for the x position of the component. | String |
<p>The imageRadioButton Component is a <a href="/comps/radioButtonComponent.html">radioButton Component</a> with an image instead of the rounded box.</p> <p>The imageRadioButton Component has the following capabilities : <ul> <li>Position & Size</li> <li>Foreground & Background Color</li> <li>Text & font</li> <li>Help</li> <li>Visibility, Read-Only, Disabled</li> <li>Events Handling</li> </ul> </p>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| accessKey | A string that indicates the alphanumeric key used to execute an action from the keyboard (in conjunction with a alteration key ex : Alt). | String |
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| blurListener | Executed when the focus quits the component. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| border | A boolean value that indicates if the component should show a border or not. | String |
| borderType | A string that indicates the type of border the component should show. Check for availability for a particular component. | String |
| converter | The converter id to use. as specified in faces-config.xml. | String |
| disabled | A boolean value that represents the disabled state of the component. | String |
| disabledImageURL | An url string pointing to the image used for the disabled state. | String |
| focusListener | Executed when the component gets the focus. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| fontBold | A boolean value indicating the <i>bold</i> property for the specified font. | String |
| fontItalic | A boolean value indicating the <i>italic</i> property for the specified font. | String |
| fontName | A string value indicating the name of the font used for this component. | String |
| fontSize | A string indicating the size to use for the selected font. (or any other CSS accepted value for font size). <br/> values [xx-small|x-small|small|medium|large|x-large|xx-large|smaller|larger|<i>length</i> for example 10px|<i>%</i>] | String |
| fontUnderline | A boolean value indicating the <i>underline</i> property for the specified font. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| groupName | A string specifying the name of the virtual entity that links different components together. | String |
| height | A string value (as specified by CSS) for the height of the component. | String |
| helpMessage | A string value specifying the message to be shown by a <a href="/comps/helpMessageZoneComponent.html">helpMessageZone Component</a>. | String |
| helpURL | An URL that points to a help page for the component. it is used for example by a <a href="/comps/helpButtonComponent.html">helpButton Component</a>. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| hoverImageURL | An url string pointing to the image used chen the pointer hover the component. | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| imageHeight | An int value specifying the height (in pixels) to use for the image shown. | String |
| imageURL | An url string pointing to the image used by the component. | String |
| imageWidth | An int value specifying the width (in pixels) to use for the image shown. | String |
| immediate | A boolean value indicating that this component's value must be converted and validated immediately (that is, during Apply Request Values phase), rather than waiting until Process Validations phase. | String |
| initListener | Executed when the component is intialized. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyDownListener | Executed when the component detects a key down event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyPressListener | Executed when the component detects a key pressed event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyUpListener | Executed when the component detects a key up event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| lookId | A string value specifying the choosen look of the component. | String |
| marginBottom | A string value specifying the margin size for the component's bottom (compliant to CSS margin-bottom). | String |
| marginLeft | A string value specifying the margin size for the component's left (compliant to CSS margin-left). | String |
| marginRight | A string value specifying the margin size for the component's right (compliant to CSS margin-right). | String |
| marginTop | A string value specifying the margin size for the component's top (compliant to CSS margin-top). | String |
| margins | A string value specifying the margins for the component (compliant to CSS margin). | String |
| mouseOutListener | Executed when the pointer leaves the area of the component. A string that represent a javascript expression to evaluate. | String |
| mouseOverListener | Executed when the pointer hover the component's area. A string that represent a javascript expression to evaluate. | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| radioValue | A string value specifying the value associated with the group when this component is selected. | String |
| readOnly | A boolean value indicating that this component will prohibit changes by the user. The element may receive focus unless it has also been disabled. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| required | A boolean value indicating that the user is required to provide a submitted value for this input component. | String |
| selected | A boolean value indicating wether the component is selected. | String |
| selectedImageURL | An url string pointing to the image used when the component is selected. | String |
| selectionListener | Executed when the component is selected. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| tabIndex | An int value specifying the position of this element in the tabbing order for the current document. This value must be an integer between 0 and 32767. | String |
| text | A string value specifying the text (literal or binding) to be shown. | String |
| textAlignment | A string value specifying the alignement for the text in the component : <ul><li> left </li><li> right </li><li> center </li></ul> | String |
| textPosition | A string value specifying the position of the text in the component : <ul><li> left </li><li> right </li><li> top </li><li> bottom </li></ul> | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| unlockedClientAttributeNames | A string value holding a comma separated list of the client modifiable properties. | String |
| userEventListener | Executed when the component is called. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| value | A string value holding the current value of the component. | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
| x | A string value (as specified by CSS) for the x position of the component. | String |
| y | A string value (as specified by CSS) for the x position of the component. | String |
<p>The imageResetButton Component is a <a href="/comps/resetButtonComponent.html">resetButton Component</a> that can show an image.</p> <p>The imageResetButton Component has the following capabilities : <ul> <li>Position & Size</li> <li>Foreground & Background Color</li> <li>Text, font & image</li> <li>Margin & border</li> <li>Help</li> <li>Visibility, Read-Only, Disabled</li> <li>Events Handling</li> </ul> </p>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| accessKey | A string that indicates the alphanumeric key used to execute an action from the keyboard (in conjunction with a alteration key ex : Alt). | String |
| action | A string that indicates the url to activate on the server when the component is actionned through a key mapping on the faces config file. | String |
| actionListener | Executed when the the component is activated by the user. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| blurListener | Executed when the focus quits the component. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| border | A boolean value that indicates if the component should show a border or not. | String |
| borderType | A string that indicates the type of border the component should show. Check for availability for a particular component. | String |
| disabled | A boolean value that represents the disabled state of the component. | String |
| disabledImageURL | An url string pointing to the image used for the disabled state. | String |
| focusListener | Executed when the component gets the focus. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| fontBold | A boolean value indicating the <i>bold</i> property for the specified font. | String |
| fontItalic | A boolean value indicating the <i>italic</i> property for the specified font. | String |
| fontName | A string value indicating the name of the font used for this component. | String |
| fontSize | A string indicating the size to use for the selected font. (or any other CSS accepted value for font size). <br/> values [xx-small|x-small|small|medium|large|x-large|xx-large|smaller|larger|<i>length</i> for example 10px|<i>%</i>] | String |
| fontUnderline | A boolean value indicating the <i>underline</i> property for the specified font. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| height | A string value (as specified by CSS) for the height of the component. | String |
| helpMessage | A string value specifying the message to be shown by a <a href="/comps/helpMessageZoneComponent.html">helpMessageZone Component</a>. | String |
| helpURL | An URL that points to a help page for the component. it is used for example by a <a href="/comps/helpButtonComponent.html">helpButton Component</a>. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| hoverImageURL | An url string pointing to the image used chen the pointer hover the component. | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| imageHeight | An int value specifying the height (in pixels) to use for the image shown. | String |
| imageURL | An url string pointing to the image used by the component. | String |
| imageWidth | An int value specifying the width (in pixels) to use for the image shown. | String |
| immediate | A boolean value indicating that this component's value must be converted and validated immediately (that is, during Apply Request Values phase), rather than waiting until Process Validations phase. | String |
| initListener | Executed when the component is intialized. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| lookId | A string value specifying the choosen look of the component. | String |
| marginBottom | A string value specifying the margin size for the component's bottom (compliant to CSS margin-bottom). | String |
| marginLeft | A string value specifying the margin size for the component's left (compliant to CSS margin-left). | String |
| marginRight | A string value specifying the margin size for the component's right (compliant to CSS margin-right). | String |
| marginTop | A string value specifying the margin size for the component's top (compliant to CSS margin-top). | String |
| margins | A string value specifying the margins for the component (compliant to CSS margin). | String |
| mouseOutListener | Executed when the pointer leaves the area of the component. A string that represent a javascript expression to evaluate. | String |
| mouseOverListener | Executed when the pointer hover the component's area. A string that represent a javascript expression to evaluate. | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| readOnly | A boolean value indicating that this component will prohibit changes by the user. The element may receive focus unless it has also been disabled. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| selectedImageURL | An url string pointing to the image used when the component is selected. | String |
| selectionListener | Executed when the component is selected. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| tabIndex | An int value specifying the position of this element in the tabbing order for the current document. This value must be an integer between 0 and 32767. | String |
| text | A string value specifying the text (literal or binding) to be shown. | String |
| textAlignment | A string value specifying the alignement for the text in the component : <ul><li> left </li><li> right </li><li> center </li></ul> | String |
| textPosition | A string value specifying the position of the text in the component : <ul><li> left </li><li> right </li><li> top </li><li> bottom </li></ul> | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| unlockedClientAttributeNames | A string value holding a comma separated list of the client modifiable properties. | String |
| userEventListener | Executed when the component is called. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| value | A string value holding the current value of the component. | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
| x | A string value (as specified by CSS) for the x position of the component. | String |
| y | A string value (as specified by CSS) for the x position of the component. | String |
<p>The ImageSubmitButton Component is a <a href="/comps/submitButtonComponent.html">submitButton Component</a> that can show an image.</p> <p>The ImageSubmitButton Component has the following capabilities : <ul> <li>Position & Size</li> <li>Foreground & Background Color</li> <li>Text, font & image</li> <li>Margin & border</li> <li>Help</li> <li>Visibility, Read-Only, Disabled</li> <li>Events Handling</li> </ul> </p>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| accessKey | A string that indicates the alphanumeric key used to execute an action from the keyboard (in conjunction with a alteration key ex : Alt). | String |
| action | A string that indicates the url to activate on the server when the component is actionned through a key mapping on the faces config file. | String |
| actionListener | Executed when the the component is activated by the user. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| blurListener | Executed when the focus quits the component. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| border | A boolean value that indicates if the component should show a border or not. | String |
| borderType | A string that indicates the type of border the component should show. Check for availability for a particular component. | String |
| disabled | A boolean value that represents the disabled state of the component. | String |
| disabledImageURL | An url string pointing to the image used for the disabled state. | String |
| focusListener | Executed when the component gets the focus. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| fontBold | A boolean value indicating the <i>bold</i> property for the specified font. | String |
| fontItalic | A boolean value indicating the <i>italic</i> property for the specified font. | String |
| fontName | A string value indicating the name of the font used for this component. | String |
| fontSize | A string indicating the size to use for the selected font. (or any other CSS accepted value for font size). <br/> values [xx-small|x-small|small|medium|large|x-large|xx-large|smaller|larger|<i>length</i> for example 10px|<i>%</i>] | String |
| fontUnderline | A boolean value indicating the <i>underline</i> property for the specified font. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| height | A string value (as specified by CSS) for the height of the component. | String |
| helpMessage | A string value specifying the message to be shown by a <a href="/comps/helpMessageZoneComponent.html">helpMessageZone Component</a>. | String |
| helpURL | An URL that points to a help page for the component. it is used for example by a <a href="/comps/helpButtonComponent.html">helpButton Component</a>. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| hoverImageURL | An url string pointing to the image used chen the pointer hover the component. | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| imageHeight | An int value specifying the height (in pixels) to use for the image shown. | String |
| imageURL | An url string pointing to the image used by the component. | String |
| imageWidth | An int value specifying the width (in pixels) to use for the image shown. | String |
| immediate | A boolean value indicating that this component's value must be converted and validated immediately (that is, during Apply Request Values phase), rather than waiting until Process Validations phase. | String |
| initListener | Executed when the component is intialized. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| lookId | A string value specifying the choosen look of the component. | String |
| marginBottom | A string value specifying the margin size for the component's bottom (compliant to CSS margin-bottom). | String |
| marginLeft | A string value specifying the margin size for the component's left (compliant to CSS margin-left). | String |
| marginRight | A string value specifying the margin size for the component's right (compliant to CSS margin-right). | String |
| marginTop | A string value specifying the margin size for the component's top (compliant to CSS margin-top). | String |
| margins | A string value specifying the margins for the component (compliant to CSS margin). | String |
| mouseOutListener | Executed when the pointer leaves the area of the component. A string that represent a javascript expression to evaluate. | String |
| mouseOverListener | Executed when the pointer hover the component's area. A string that represent a javascript expression to evaluate. | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| readOnly | A boolean value indicating that this component will prohibit changes by the user. The element may receive focus unless it has also been disabled. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| selectedImageURL | An url string pointing to the image used when the component is selected. | String |
| selectionListener | Executed when the component is selected. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| tabIndex | An int value specifying the position of this element in the tabbing order for the current document. This value must be an integer between 0 and 32767. | String |
| text | A string value specifying the text (literal or binding) to be shown. | String |
| textAlignment | A string value specifying the alignement for the text in the component : <ul><li> left </li><li> right </li><li> center </li></ul> | String |
| textPosition | A string value specifying the position of the text in the component : <ul><li> left </li><li> right </li><li> top </li><li> bottom </li></ul> | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| unlockedClientAttributeNames | A string value holding a comma separated list of the client modifiable properties. | String |
| userEventListener | Executed when the component is called. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| value | A string value holding the current value of the component. | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
| x | A string value (as specified by CSS) for the x position of the component. | String |
| y | A string value (as specified by CSS) for the x position of the component. | String |
<p>The lineBreak Component is the <BR> HTML equivalent.</p> <p>It is used often when simple HTML is not desirable : for example if a part of a page is loaded via AJAX it might be easier to have only a jsf tree memory represantation.</p> <p>The lineBreak Component has the following capability : <ul> <li>Visibility</li> </ul> </p>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| visible | A boolean value indicating wether the composant is visible. | String |
<p>The list Component is based on the standard HTML tag <SELECT>.</p> <p>The list Component has the following capabilities : <ul> <li>Position & Size</li> <li>Foreground & Background Color</li> <li>Text ,& font</li> <li>Help</li> <li>Visibility, Read-Only, Disabled</li> <li>Events Handling</li> </ul> </p>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| accessKey | A string that indicates the alphanumeric key used to execute an action from the keyboard (in conjunction with a alteration key ex : Alt). | String |
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| blurListener | Executed when the focus quits the component. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| converter | The converter id to use. as specified in faces-config.xml. | String |
| disabled | A boolean value that represents the disabled state of the component. | String |
| doubleClickListener | Executed when the component is double-clicked. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| filterProperties | A binded object that hold the filters to use on the server side. This property is often set via javascript code. | String |
| focusListener | Executed when the component gets the focus. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| fontBold | A boolean value indicating the <i>bold</i> property for the specified font. | String |
| fontItalic | A boolean value indicating the <i>italic</i> property for the specified font. | String |
| fontName | A string value indicating the name of the font used for this component. | String |
| fontSize | A string indicating the size to use for the selected font. (or any other CSS accepted value for font size). <br/> values [xx-small|x-small|small|medium|large|x-large|xx-large|smaller|larger|<i>length</i> for example 10px|<i>%</i>] | String |
| fontUnderline | A boolean value indicating the <i>underline</i> property for the specified font. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| height | A string value (as specified by CSS) for the height of the component. | String |
| helpMessage | A string value specifying the message to be shown by a <a href="/comps/helpMessageZoneComponent.html">helpMessageZone Component</a>. | String |
| helpURL | An URL that points to a help page for the component. it is used for example by a <a href="/comps/helpButtonComponent.html">helpButton Component</a>. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| immediate | A boolean value indicating that this component's value must be converted and validated immediately (that is, during Apply Request Values phase), rather than waiting until Process Validations phase. | String |
| initListener | Executed when the component is intialized. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyDownListener | Executed when the component detects a key down event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyPressListener | Executed when the component detects a key pressed event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyUpListener | Executed when the component detects a key up event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| lookId | A string value specifying the choosen look of the component. | String |
| marginBottom | A string value specifying the margin size for the component's bottom (compliant to CSS margin-bottom). | String |
| marginLeft | A string value specifying the margin size for the component's left (compliant to CSS margin-left). | String |
| marginRight | A string value specifying the margin size for the component's right (compliant to CSS margin-right). | String |
| marginTop | A string value specifying the margin size for the component's top (compliant to CSS margin-top). | String |
| margins | A string value specifying the margins for the component (compliant to CSS margin). | String |
| mouseOutListener | Executed when the pointer leaves the area of the component. A string that represent a javascript expression to evaluate. | String |
| mouseOverListener | Executed when the pointer hover the component's area. A string that represent a javascript expression to evaluate. | String |
| multipleSelect | A boolean value indicating wether multiple selection is permitted. | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| required | A boolean value indicating that the user is required to provide a submitted value for this input component. | String |
| rowNumber | An int value specifying the number of rows to be displayed. | String |
| selectionListener | Executed when the component is selected. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| tabIndex | An int value specifying the position of this element in the tabbing order for the current document. This value must be an integer between 0 and 32767. | String |
| textAlignment | A string value specifying the alignement for the text in the component : <ul><li> left </li><li> right </li><li> center </li></ul> | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| unlockedClientAttributeNames | A string value holding a comma separated list of the client modifiable properties. | String |
| userEventListener | Executed when the component is called. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| value | A string value holding the current value of the component. | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
| x | A string value (as specified by CSS) for the x position of the component. | String |
| y | A string value (as specified by CSS) for the x position of the component. | String |
<p>The menu Component provides a way of creating desktop style menus on web pages. It allows sub-menus, check and radio menu items and image menus. It also provides pop-up menus.</p> <p>The menu Component has the following capabilities : <ul> <li>Position & Size</li> <li>Foreground & Background Color</li> <li>Text, font & images</li> <li>Help</li> <li>Visibility, Read-Only, Disabled</li> <li>Events Handling</li> </ul> </p>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| checkListener | Executed when the component is checked. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| checkedValues | A table of the values associated with checked nodes for the component. (Binding only) | String |
| converter | The converter id to use. as specified in faces-config.xml. | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| menuId | An id used to retreive a specific menu. For example, "#node" is used to call a menu on a tree node while "#body" is used for the menu boody. | String |
| menuListener | Executed when a menu is activated. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| removeAllWhenShown | A boolean value specifying wether the content of the component must be remove before the listener is called and the component displayed. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| selectedValues | A table of the values associated with selected nodes for the component. (Binding only) | String |
| selectionListener | Executed when the component is selected. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| value | A string value holding the current value of the component. | String |
Describes a top-level menu bar.
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| accessKey | A string that indicates the alphanumeric key used to execute an action from the keyboard (in conjunction with a alteration key ex : Alt). | String |
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| blurListener | Executed when the focus quits the component. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| checkListener | Executed when the component is checked. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| converter | The converter id to use. as specified in faces-config.xml. | String |
| disabled | A boolean value that represents the disabled state of the component. | String |
| focusListener | Executed when the component gets the focus. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| fontBold | A boolean value indicating the <i>bold</i> property for the specified font. | String |
| fontItalic | A boolean value indicating the <i>italic</i> property for the specified font. | String |
| fontName | A string value indicating the name of the font used for this component. | String |
| fontSize | A string indicating the size to use for the selected font. (or any other CSS accepted value for font size). <br/> values [xx-small|x-small|small|medium|large|x-large|xx-large|smaller|larger|<i>length</i> for example 10px|<i>%</i>] | String |
| fontUnderline | A boolean value indicating the <i>underline</i> property for the specified font. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| height | A string value (as specified by CSS) for the height of the component. | String |
| helpMessage | A string value specifying the message to be shown by a <a href="/comps/helpMessageZoneComponent.html">helpMessageZone Component</a>. | String |
| helpURL | An URL that points to a help page for the component. it is used for example by a <a href="/comps/helpButtonComponent.html">helpButton Component</a>. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| immediate | A boolean value indicating that this component's value must be converted and validated immediately (that is, during Apply Request Values phase), rather than waiting until Process Validations phase. | String |
| initListener | Executed when the component is intialized. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| lookId | A string value specifying the choosen look of the component. | String |
| marginBottom | A string value specifying the margin size for the component's bottom (compliant to CSS margin-bottom). | String |
| marginLeft | A string value specifying the margin size for the component's left (compliant to CSS margin-left). | String |
| marginRight | A string value specifying the margin size for the component's right (compliant to CSS margin-right). | String |
| marginTop | A string value specifying the margin size for the component's top (compliant to CSS margin-top). | String |
| margins | A string value specifying the margins for the component (compliant to CSS margin). | String |
| mouseOutListener | Executed when the pointer leaves the area of the component. A string that represent a javascript expression to evaluate. | String |
| mouseOverListener | Executed when the pointer hover the component's area. A string that represent a javascript expression to evaluate. | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| readOnly | A boolean value indicating that this component will prohibit changes by the user. The element may receive focus unless it has also been disabled. | String |
| removeAllWhenShown | A boolean value specifying wether the content of the component must be remove before the listener is called and the component displayed. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| selectionListener | Executed when the component is selected. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| tabIndex | An int value specifying the position of this element in the tabbing order for the current document. This value must be an integer between 0 and 32767. | String |
| textAlignment | A string value specifying the alignement for the text in the component : <ul><li> left </li><li> right </li><li> center </li></ul> | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| unlockedClientAttributeNames | A string value holding a comma separated list of the client modifiable properties. | String |
| userEventListener | Executed when the component is called. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| value | A string value holding the current value of the component. | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
| x | A string value (as specified by CSS) for the x position of the component. | String |
| y | A string value (as specified by CSS) for the x position of the component. | String |
A menu item with a check.
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| acceleratorKey | A string that indicates the (composed) key used to execute an action from the keyboard. | String |
| accessKey | A string that indicates the alphanumeric key used to execute an action from the keyboard (in conjunction with a alteration key ex : Alt). | String |
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| checked | A boolean value indicating the state of the component. | String |
| disabled | A boolean value that represents the disabled state of the component. | String |
| disabledImageURL | An url string pointing to the image used for the disabled state. | String |
| expandedImageURL | An url string pointing to an image used for the expanded state. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| hoverImageURL | An url string pointing to the image used chen the pointer hover the component. | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| imageURL | An url string pointing to the image used by the component. | String |
| itemDescription | A string value describing the item. | String |
| itemDisabled | A boolean value indicating whether the option created by this component is disabled. Expressions must evaluate to a boolean. Default value is false. | String |
| itemLabel | A string value specifying the label to be displayed to the user for this option. | String |
| itemValue | A string value to be returned to the server if this option is selected by the user. | String |
| menuListener | Executed when a menu is activated. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| removeAllWhenShown | A boolean value specifying wether the content of the component must be remove before the listener is called and the component displayed. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| selectedImageURL | An url string pointing to the image used when the component is selected. | String |
| text | A string value specifying the text (literal or binding) to be shown. | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| visible | A boolean value indicating wether the composant is visible. | String |
A menu item
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| acceleratorKey | A string that indicates the (composed) key used to execute an action from the keyboard. | String |
| accessKey | A string that indicates the alphanumeric key used to execute an action from the keyboard (in conjunction with a alteration key ex : Alt). | String |
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| disabled | A boolean value that represents the disabled state of the component. | String |
| disabledImageURL | An url string pointing to the image used for the disabled state. | String |
| expandedImageURL | An url string pointing to an image used for the expanded state. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| hoverImageURL | An url string pointing to the image used chen the pointer hover the component. | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| imageURL | An url string pointing to the image used by the component. | String |
| itemDescription | A string value describing the item. | String |
| itemDisabled | A boolean value indicating whether the option created by this component is disabled. Expressions must evaluate to a boolean. Default value is false. | String |
| itemLabel | A string value specifying the label to be displayed to the user for this option. | String |
| itemValue | A string value to be returned to the server if this option is selected by the user. | String |
| menuListener | Executed when a menu is activated. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| removeAllWhenShown | A boolean value specifying wether the content of the component must be remove before the listener is called and the component displayed. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| selectedImageURL | An url string pointing to the image used when the component is selected. | String |
| text | A string value specifying the text (literal or binding) to be shown. | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| visible | A boolean value indicating wether the composant is visible. | String |
A menu item with a radiobutton (see attribute GroupName)
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| acceleratorKey | A string that indicates the (composed) key used to execute an action from the keyboard. | String |
| accessKey | A string that indicates the alphanumeric key used to execute an action from the keyboard (in conjunction with a alteration key ex : Alt). | String |
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| checked | A boolean value indicating the state of the component. | String |
| disabled | A boolean value that represents the disabled state of the component. | String |
| disabledImageURL | An url string pointing to the image used for the disabled state. | String |
| expandedImageURL | An url string pointing to an image used for the expanded state. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| groupName | A string specifying the name of the virtual entity that links different components together. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| hoverImageURL | An url string pointing to the image used chen the pointer hover the component. | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| imageURL | An url string pointing to the image used by the component. | String |
| itemDescription | A string value describing the item. | String |
| itemDisabled | A boolean value indicating whether the option created by this component is disabled. Expressions must evaluate to a boolean. Default value is false. | String |
| itemLabel | A string value specifying the label to be displayed to the user for this option. | String |
| itemValue | A string value to be returned to the server if this option is selected by the user. | String |
| menuListener | Executed when a menu is activated. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| radioValue | A string value specifying the value associated with the group when this component is selected. | String |
| removeAllWhenShown | A boolean value specifying wether the content of the component must be remove before the listener is called and the component displayed. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| selectedImageURL | An url string pointing to the image used when the component is selected. | String |
| text | A string value specifying the text (literal or binding) to be shown. | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| visible | A boolean value indicating wether the composant is visible. | String |
A separator Menu item
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| visible | A boolean value indicating wether the composant is visible. | String |
<p>The message Component is a placeholder for error messages (only one is shown).</p> <p>The message Component has the following capabilities : <ul> <li>Position & Size</li> <li>Foreground & Background Color</li> <li>Text, font & image</li> <li>Margin</li> <li>Help</li> <li>Visibility</li> <li>Events Handling</li> </ul> </p>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| errorImageURL | An url string pointing to an image used for error messages. | String |
| errorStyleClass | A space-separated list of CSS style class(es) to be applied for Error Messages. This value will be passed through as the "class" attribute on generated markup. | String |
| fatalImageURL | An url string pointing to the image for a fatal message. | String |
| fatalStyleClass | A space-separated list of CSS style class(es) to be applied for fatal messages. This value will be passed through as the "class" attribute on generated markup. | String |
| for | A component's id that express the link between the two components. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| height | A string value (as specified by CSS) for the height of the component. | String |
| helpMessage | A string value specifying the message to be shown by a <a href="/comps/helpMessageZoneComponent.html">helpMessageZone Component</a>. | String |
| helpURL | An URL that points to a help page for the component. it is used for example by a <a href="/comps/helpButtonComponent.html">helpButton Component</a>. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| imageHeight | An int value specifying the height (in pixels) to use for the image shown. | String |
| imageURL | An url string pointing to the image used by the component. | String |
| imageWidth | An int value specifying the width (in pixels) to use for the image shown. | String |
| infoImageURL | An url string pointing to the image used for an info message. | String |
| infoStyleClass | A space-separated list of CSS style class(es) to be applied for info messages. This value will be passed through as the "class" attribute on generated markup. | String |
| initListener | Executed when the component is intialized. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| lookId | A string value specifying the choosen look of the component. | String |
| marginBottom | A string value specifying the margin size for the component's bottom (compliant to CSS margin-bottom). | String |
| marginLeft | A string value specifying the margin size for the component's left (compliant to CSS margin-left). | String |
| marginRight | A string value specifying the margin size for the component's right (compliant to CSS margin-right). | String |
| marginTop | A string value specifying the margin size for the component's top (compliant to CSS margin-top). | String |
| margins | A string value specifying the margins for the component (compliant to CSS margin). | String |
| mouseOutListener | Executed when the pointer leaves the area of the component. A string that represent a javascript expression to evaluate. | String |
| mouseOverListener | Executed when the pointer hover the component's area. A string that represent a javascript expression to evaluate. | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| setFocusIfMessage | A boolean value indicating wether the component should be get the focus when a message is fired. | String |
| showDetail | A boolean value indicating whether the summary portion of displayed messages should be included. Default value is "true". | String |
| showIfMessage | A boolean value indicating wether the component should be shown when a message is fired. | String |
| showSummary | A boolean value indicating whether the summary portion of displayed messages should be included. Default value is "false". | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| text | A string value specifying the text (literal or binding) to be shown. | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| userEventListener | Executed when the component is called. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| warnImageURL | An url string pointing to the image used for a warning message. | String |
| warnStyleClass | A space-separated list of CSS style class(es) to be applied for warning messages. This value will be passed through as the "class" attribute on generated markup. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
| x | A string value (as specified by CSS) for the x position of the component. | String |
| y | A string value (as specified by CSS) for the x position of the component. | String |
<p>The messageFieldSet Component is a <a href="/comps/fieldSetComponent.html">fieldSet Component</a> combined with a <a href="/comps/messageComponent.html">message COmponent</a> in the title part.</p> <p>The messageFieldSet Component has the following capabilities : <ul> <li>Position & Size</li> <li>Foreground & Background Color</li> <li>Text, font & image</li> <li>Margin & border</li> <li>Help</li> <li>Visibility</li> <li>Background Image</li> <li>Events Handling</li> <li>Contextual Menu</li> <li>Async Render (AJAX)</li> </ul> </p>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| borderType | A string that indicates the type of border the component should show. Check for availability for a particular component. | String |
| converter | The converter id to use. as specified in faces-config.xml. | String |
| errorImageURL | An url string pointing to an image used for error messages. | String |
| errorStyleClass | A space-separated list of CSS style class(es) to be applied for Error Messages. This value will be passed through as the "class" attribute on generated markup. | String |
| fatalImageURL | An url string pointing to the image for a fatal message. | String |
| fatalStyleClass | A space-separated list of CSS style class(es) to be applied for fatal messages. This value will be passed through as the "class" attribute on generated markup. | String |
| fontBold | A boolean value indicating the <i>bold</i> property for the specified font. | String |
| fontItalic | A boolean value indicating the <i>italic</i> property for the specified font. | String |
| fontName | A string value indicating the name of the font used for this component. | String |
| fontSize | A string indicating the size to use for the selected font. (or any other CSS accepted value for font size). <br/> values [xx-small|x-small|small|medium|large|x-large|xx-large|smaller|larger|<i>length</i> for example 10px|<i>%</i>] | String |
| fontUnderline | A boolean value indicating the <i>underline</i> property for the specified font. | String |
| for* | A component's id that express the link between the two components. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| height | A string value (as specified by CSS) for the height of the component. | String |
| helpMessage | A string value specifying the message to be shown by a <a href="/comps/helpMessageZoneComponent.html">helpMessageZone Component</a>. | String |
| helpURL | An URL that points to a help page for the component. it is used for example by a <a href="/comps/helpButtonComponent.html">helpButton Component</a>. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| imageHeight | An int value specifying the height (in pixels) to use for the image shown. | String |
| imageURL | An url string pointing to the image used by the component. | String |
| imageWidth | An int value specifying the width (in pixels) to use for the image shown. | String |
| infoImageURL | An url string pointing to the image used for an info message. | String |
| infoStyleClass | A space-separated list of CSS style class(es) to be applied for info messages. This value will be passed through as the "class" attribute on generated markup. | String |
| initListener | Executed when the component is intialized. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| lookId | A string value specifying the choosen look of the component. | String |
| marginBottom | A string value specifying the margin size for the component's bottom (compliant to CSS margin-bottom). | String |
| marginLeft | A string value specifying the margin size for the component's left (compliant to CSS margin-left). | String |
| marginRight | A string value specifying the margin size for the component's right (compliant to CSS margin-right). | String |
| marginTop | A string value specifying the margin size for the component's top (compliant to CSS margin-top). | String |
| margins | A string value specifying the margins for the component (compliant to CSS margin). | String |
| mouseOutListener | Executed when the pointer leaves the area of the component. A string that represent a javascript expression to evaluate. | String |
| mouseOverListener | Executed when the pointer hover the component's area. A string that represent a javascript expression to evaluate. | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| scopeValue | A string value specifying the binding associated to a variable representing a shortcut. (cf. scopeVar) ex: if scopeVar "bat" is associated to scopeValue "bean.attribute1.attribute2" then the use of "bat.attribute3" will be equivalente to "bean.attribute1.attribute2.attribute3" | String |
| scopeVar | A string value specifying the name of a variable representing a shortcut to a binding. (cf. scopeValue) ex: if scopeVar "bat" is associated to scopeValue "bean.attribute1.attribute2" then the use of "bat.attribute3" will be equivalente to "bean.attribute1.attribute2.attribute3" | String |
| setFocusIfMessage | A boolean value indicating wether the component should be get the focus when a message is fired. | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| text | A string value specifying the text (literal or binding) to be shown. | String |
| textAlignment | A string value specifying the alignement for the text in the component : <ul><li> left </li><li> right </li><li> center </li></ul> | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| unlockedClientAttributeNames | A string value holding a comma separated list of the client modifiable properties. | String |
| userEventListener | Executed when the component is called. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| value | A string value holding the current value of the component. | String |
| verticalAlignment | A string that represent the vertical alignement of the data in the component. <ul><li> top </li><li> center </li><li> bottom </li></ul> | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| warnImageURL | An url string pointing to the image used for a warning message. | String |
| warnStyleClass | A space-separated list of CSS style class(es) to be applied for warning messages. This value will be passed through as the "class" attribute on generated markup. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
| x | A string value (as specified by CSS) for the x position of the component. | String |
| y | A string value (as specified by CSS) for the x position of the component. | String |
<p>The messages Component is a placeholder for error messages (several messages can be shown simultaneously).</p> <p>The messages Component has the following capabilities : <ul> <li>Position & Size</li> <li>Foreground & Background Color</li> <li>Text, font & image</li> <li>Margin</li> <li>Help</li> <li>Visibility</li> <li>Events Handling</li> </ul> </p>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| errorStyleClass | A space-separated list of CSS style class(es) to be applied for Error Messages. This value will be passed through as the "class" attribute on generated markup. | String |
| fatalStyleClass | A space-separated list of CSS style class(es) to be applied for fatal messages. This value will be passed through as the "class" attribute on generated markup. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| globalOnly | A boolean value indicating if the component specific messages should be shown or not. | String |
| height | A string value (as specified by CSS) for the height of the component. | String |
| helpMessage | A string value specifying the message to be shown by a <a href="/comps/helpMessageZoneComponent.html">helpMessageZone Component</a>. | String |
| helpURL | An URL that points to a help page for the component. it is used for example by a <a href="/comps/helpButtonComponent.html">helpButton Component</a>. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| infoStyleClass | A space-separated list of CSS style class(es) to be applied for info messages. This value will be passed through as the "class" attribute on generated markup. | String |
| initListener | Executed when the component is intialized. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| lookId | A string value specifying the choosen look of the component. | String |
| marginBottom | A string value specifying the margin size for the component's bottom (compliant to CSS margin-bottom). | String |
| marginLeft | A string value specifying the margin size for the component's left (compliant to CSS margin-left). | String |
| marginRight | A string value specifying the margin size for the component's right (compliant to CSS margin-right). | String |
| marginTop | A string value specifying the margin size for the component's top (compliant to CSS margin-top). | String |
| margins | A string value specifying the margins for the component (compliant to CSS margin). | String |
| mouseOutListener | Executed when the pointer leaves the area of the component. A string that represent a javascript expression to evaluate. | String |
| mouseOverListener | Executed when the pointer hover the component's area. A string that represent a javascript expression to evaluate. | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| showDetail | A boolean value indicating whether the summary portion of displayed messages should be included. Default value is "true". | String |
| showSummary | A boolean value indicating whether the summary portion of displayed messages should be included. Default value is "false". | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| userEventListener | Executed when the component is called. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| warnStyleClass | A space-separated list of CSS style class(es) to be applied for warning messages. This value will be passed through as the "class" attribute on generated markup. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
| x | A string value (as specified by CSS) for the x position of the component. | String |
| y | A string value (as specified by CSS) for the x position of the component. | String |
<b>NOT COMPLETE</b>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| accessKey | A string that indicates the alphanumeric key used to execute an action from the keyboard (in conjunction with a alteration key ex : Alt). | String |
| attributesLocale | A string value that indicates the locale associated with the component. | String |
| autoCompletion | A boolean value indicating if the component should complete automaticaly the user entry. | String |
| autoTab | A boolean value indicating if the focus should move automatically to the next element when the entry is completed. | String |
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| blurListener | Executed when the focus quits the component. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| converter | The converter id to use. as specified in faces-config.xml. | String |
| defaultNumber | the default value. | String |
| disabled | A boolean value that represents the disabled state of the component. | String |
| focusListener | Executed when the component gets the focus. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| focusStyleClass | A space-separated list of CSS style classes to be applied when this component get the focus. This value will be passed through as the "class" attribute on generated markup. | String |
| fontBold | A boolean value indicating the <i>bold</i> property for the specified font. | String |
| fontItalic | A boolean value indicating the <i>italic</i> property for the specified font. | String |
| fontName | A string value indicating the name of the font used for this component. | String |
| fontSize | A string indicating the size to use for the selected font. (or any other CSS accepted value for font size). <br/> values [xx-small|x-small|small|medium|large|x-large|xx-large|smaller|larger|<i>length</i> for example 10px|<i>%</i>] | String |
| fontUnderline | A boolean value indicating the <i>underline</i> property for the specified font. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| fractionDigits | An int value indicating the number of digits to show after the decimal separator. | String |
| fractionStep | Experimental Do not use. | String |
| height | A string value (as specified by CSS) for the height of the component. | String |
| helpMessage | A string value specifying the message to be shown by a <a href="/comps/helpMessageZoneComponent.html">helpMessageZone Component</a>. | String |
| helpURL | An URL that points to a help page for the component. it is used for example by a <a href="/comps/helpButtonComponent.html">helpButton Component</a>. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| immediate | A boolean value indicating that this component's value must be converted and validated immediately (that is, during Apply Request Values phase), rather than waiting until Process Validations phase. | String |
| initListener | Executed when the component is intialized. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| integerDigits | An int value indicating the number of digits to show before the decimal separator. | String |
| integerStep | An int value specifying the step used for the integer field when increasing/decreasing the value with the up/down arrows. | String |
| keyDownListener | Executed when the component detects a key down event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyPressListener | Executed when the component detects a key pressed event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyUpListener | Executed when the component detects a key up event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| lookId | A string value specifying the choosen look of the component. | String |
| marginBottom | A string value specifying the margin size for the component's bottom (compliant to CSS margin-bottom). | String |
| marginLeft | A string value specifying the margin size for the component's left (compliant to CSS margin-left). | String |
| marginRight | A string value specifying the margin size for the component's right (compliant to CSS margin-right). | String |
| marginTop | A string value specifying the margin size for the component's top (compliant to CSS margin-top). | String |
| margins | A string value specifying the margins for the component (compliant to CSS margin). | String |
| maximum | An int value specifying the upper limit for the value of the component. | String |
| minimum | An int value specifying the lower limit for the value of the component. | String |
| mouseOutListener | Executed when the pointer leaves the area of the component. A string that represent a javascript expression to evaluate. | String |
| mouseOverListener | Executed when the pointer hover the component's area. A string that represent a javascript expression to evaluate. | String |
| number | A number typed value. | String |
| numberFormat | A string value specifying the format to use (compliant with java format). | String |
| numberFormatType | A string value specifying the data type : <ul><li> number </li><li> integer </li><li> currency </li><li> percent </li></ul> | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| readOnly | A boolean value indicating that this component will prohibit changes by the user. The element may receive focus unless it has also been disabled. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| required | A boolean value indicating that the user is required to provide a submitted value for this input component. | String |
| selectionListener | Executed when the component is selected. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| tabIndex | An int value specifying the position of this element in the tabbing order for the current document. This value must be an integer between 0 and 32767. | String |
| textAlignment | A string value specifying the alignement for the text in the component : <ul><li> left </li><li> right </li><li> center </li></ul> | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| unlockedClientAttributeNames | A string value holding a comma separated list of the client modifiable properties. | String |
| userEventListener | Executed when the component is called. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| value | A string value holding the current value of the component. | String |
| valueChangeListener | Executed when the component's value is changed. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
| x | A string value (as specified by CSS) for the x position of the component. | String |
| y | A string value (as specified by CSS) for the x position of the component. | String |
<p>The pager Component is linked to the <a href="/comps/dataGridComponent.html">dataGrid Component</a>. It shows informations about the result set (ex: number of available pages) and can give direct access to a specific page ("a la Google").</p> <p>The pager Component has the following capabilities : <ul> <li>Position & Size</li> <li>Foreground & Background Color</li> <li>Text & font</li> <li>Help</li> <li>Visibility, Read-Only, Disabled</li> <li>Events Handling</li> <li>Association with another component</li> </ul> </p>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| for* | A component's id that express the link between the two components. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| height | A string value (as specified by CSS) for the height of the component. | String |
| helpMessage | A string value specifying the message to be shown by a <a href="/comps/helpMessageZoneComponent.html">helpMessageZone Component</a>. | String |
| helpURL | An URL that points to a help page for the component. it is used for example by a <a href="/comps/helpButtonComponent.html">helpButton Component</a>. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| lookId | A string value specifying the choosen look of the component. | String |
| manyResultsMessage | A string value to be displayed by the component. It can embbed keywords (between braces : "{keyword}") : <ul><li> first: the index of the first row shown </li><li> position: the index of the first row shown </li><li> pageposition : the index of the page shown </li><li> last: a link to the last page </li><li> rowcount : the total number of rows </li><li> bfirst: a link to the first page </li><li> bnext: a link to the next page </li><li> blast: a link to the last page </li><li> bpages[:n] : a list of links to pages before and after the page shown (n specifies the number of indexes shown) </li><li> bprev: a link to the previous page </li></ul> | String |
| marginBottom | A string value specifying the margin size for the component's bottom (compliant to CSS margin-bottom). | String |
| marginLeft | A string value specifying the margin size for the component's left (compliant to CSS margin-left). | String |
| marginRight | A string value specifying the margin size for the component's right (compliant to CSS margin-right). | String |
| marginTop | A string value specifying the margin size for the component's top (compliant to CSS margin-top). | String |
| margins | A string value specifying the margins for the component (compliant to CSS margin). | String |
| message | A string value to be displayed by the component. It can embbed keywords (between braces : "{keyword}") : <ul><li> first: the index of the first row shown </li><li> position: the index of the first row shown </li><li> pageposition : the index of the page shown </li><li> last: a link to the last page </li><li> rowcount : the total number of rows </li><li> bfirst: a link to the first page </li><li> bnext: a link to the next page </li><li> blast: a link to the last page </li><li> bpages[:n] : a list of links to pages before and after the page shown (n specifies the number of indexes shown) </li><li> bprev: a link to the previous page </li></ul> ex: "{rowcount}' results, results from '{first}' to '{last}'.\n['{bfirst}'/'{bprev}'] '{bpages}' ['{bnext}'/'{blast}']'" | String |
| noPagedMessage | A string specifying the message to display when there is no row to display. | String |
| oneResultMessage | A string value to be displayed by the component when there's only one result. It can embbed keywords (between braces : "{keyword}") : <ul><li> first: the index of the first row shown </li><li> position: the index of the first row shown </li><li> pageposition : the index of the page shown </li><li> last: a link to the last page </li><li> rowcount : the total number of rows </li><li> bfirst: a link to the first page </li><li> bnext: a link to the next page </li><li> blast: a link to the last page </li><li> bpages[:n] : a list of links to pages before and after the page shown (n specifies the number of indexes shown) </li><li> bprev: a link to the previous page </li></ul> ex: "One result.\nCome back later !" ex: "{rowcount}' results, results from '{first}' to '{last}'.\n['{bfirst}'/'{bprev}'] '{bpages}' ['{bnext}'/'{blast}']'" | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| userEventListener | Executed when the component is called. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
| x | A string value (as specified by CSS) for the x position of the component. | String |
| y | A string value (as specified by CSS) for the x position of the component. | String |
| zeroResultMessage | A string value to be displayed by the component when there's no result. It can embbed keywords (between braces : "{keyword}") : <ul><li> first: the index of the first row shown </li><li> position: the index of the first row shown </li><li> pageposition : the index of the page shown </li><li> last: a link to the last page </li><li> rowcount : the total number of rows </li><li> bfirst: a link to the first page </li><li> bnext: a link to the next page </li><li> blast: a link to the last page </li><li> bpages[:n] : a list of links to pages before and after the page shown (n specifies the number of indexes shown) </li><li> bprev: a link to the previous page </li></ul> ex: "No result.\nCome back later !" | String |
<p>The passwordEntry Component is based on the standard HTML tag <INPUT TYPE="password"> and is a <a href="/comps/textEntryComponent.html">textEntry Component</a>.</p> <p>The passwordEntry Component has the following capabilities : <ul> <li>Position & Size</li> <li>Foreground & Background Color</li> <li>Text & font</li> <li>Help</li> <li>Visibility, Read-Only, Disabled</li> <li>Events Handling</li> </ul> </p>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| accessKey | A string that indicates the alphanumeric key used to execute an action from the keyboard (in conjunction with a alteration key ex : Alt). | String |
| action | A string that indicates the url to activate on the server when the component is actionned through a key mapping on the faces config file. | String |
| actionListener | Executed when the the component is activated by the user. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| autoCompletion | A boolean value indicating if the component should complete automaticaly the user entry. | String |
| autoTab | A boolean value indicating if the focus should move automatically to the next element when the entry is completed. | String |
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| blurListener | Executed when the focus quits the component. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| clientValidator | A key identifying a validation process to apply to the component. this validation process can handle parameters. cf. the clientValidator doc. | String |
| columnNumber | An int value holding the width of the component in characters : x characters translates into y pixels width. | String |
| converter | The converter id to use. as specified in faces-config.xml. | String |
| disabled | A boolean value that represents the disabled state of the component. | String |
| emptyMessage | A string containing the message shown when there is no result. | String |
| errorStyleClass | A space-separated list of CSS style class(es) to be applied for Error Messages. This value will be passed through as the "class" attribute on generated markup. | String |
| fatalStyleClass | A space-separated list of CSS style class(es) to be applied for fatal messages. This value will be passed through as the "class" attribute on generated markup. | String |
| focusListener | Executed when the component gets the focus. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| focusStyleClass | A space-separated list of CSS style classes to be applied when this component get the focus. This value will be passed through as the "class" attribute on generated markup. | String |
| fontBold | A boolean value indicating the <i>bold</i> property for the specified font. | String |
| fontItalic | A boolean value indicating the <i>italic</i> property for the specified font. | String |
| fontName | A string value indicating the name of the font used for this component. | String |
| fontSize | A string indicating the size to use for the selected font. (or any other CSS accepted value for font size). <br/> values [xx-small|x-small|small|medium|large|x-large|xx-large|smaller|larger|<i>length</i> for example 10px|<i>%</i>] | String |
| fontUnderline | A boolean value indicating the <i>underline</i> property for the specified font. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| height | A string value (as specified by CSS) for the height of the component. | String |
| helpMessage | A string value specifying the message to be shown by a <a href="/comps/helpMessageZoneComponent.html">helpMessageZone Component</a>. | String |
| helpURL | An URL that points to a help page for the component. it is used for example by a <a href="/comps/helpButtonComponent.html">helpButton Component</a>. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| immediate | A boolean value indicating that this component's value must be converted and validated immediately (that is, during Apply Request Values phase), rather than waiting until Process Validations phase. | String |
| infoStyleClass | A space-separated list of CSS style class(es) to be applied for info messages. This value will be passed through as the "class" attribute on generated markup. | String |
| initListener | Executed when the component is intialized. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyDownListener | Executed when the component detects a key down event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyPressListener | Executed when the component detects a key pressed event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyUpListener | Executed when the component detects a key up event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| lookId | A string value specifying the choosen look of the component. | String |
| marginBottom | A string value specifying the margin size for the component's bottom (compliant to CSS margin-bottom). | String |
| marginLeft | A string value specifying the margin size for the component's left (compliant to CSS margin-left). | String |
| marginRight | A string value specifying the margin size for the component's right (compliant to CSS margin-right). | String |
| marginTop | A string value specifying the margin size for the component's top (compliant to CSS margin-top). | String |
| margins | A string value specifying the margins for the component (compliant to CSS margin). | String |
| maxTextLength | An int value specifying the maximum number of characters that the user can enter in the component. | String |
| mouseOutListener | Executed when the pointer leaves the area of the component. A string that represent a javascript expression to evaluate. | String |
| mouseOverListener | Executed when the pointer hover the component's area. A string that represent a javascript expression to evaluate. | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| readOnly | A boolean value indicating that this component will prohibit changes by the user. The element may receive focus unless it has also been disabled. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| required | A boolean value indicating that the user is required to provide a submitted value for this input component. | String |
| selectionListener | Executed when the component is selected. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| tabIndex | An int value specifying the position of this element in the tabbing order for the current document. This value must be an integer between 0 and 32767. | String |
| text | A string value specifying the text (literal or binding) to be shown. | String |
| textAlignment | A string value specifying the alignement for the text in the component : <ul><li> left </li><li> right </li><li> center </li></ul> | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| unlockedClientAttributeNames | A string value holding a comma separated list of the client modifiable properties. | String |
| userEventListener | Executed when the component is called. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| value | A string value holding the current value of the component. | String |
| valueChangeListener | Executed when the component's value is changed. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| warnStyleClass | A space-separated list of CSS style class(es) to be applied for warning messages. This value will be passed through as the "class" attribute on generated markup. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
| x | A string value (as specified by CSS) for the x position of the component. | String |
| y | A string value (as specified by CSS) for the x position of the component. | String |
<p>The progressBar Component indicates the evolution of a task.</p> <p>The progressBar Component has the following capabilities : <ul> <li>Position & Size</li> <li>Foreground & Background Color</li> <li>image</li> <li>Margin & border</li> <li>Help</li> <li>Visibility</li> </ul> </p>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| converter | The converter id to use. as specified in faces-config.xml. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| height | A string value (as specified by CSS) for the height of the component. | String |
| helpMessage | A string value specifying the message to be shown by a <a href="/comps/helpMessageZoneComponent.html">helpMessageZone Component</a>. | String |
| helpURL | An URL that points to a help page for the component. it is used for example by a <a href="/comps/helpButtonComponent.html">helpButton Component</a>. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| indeterminate | A boolean value indicating wether the value is not determinated. | String |
| initListener | Executed when the component is intialized. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| lookId | A string value specifying the choosen look of the component. | String |
| marginBottom | A string value specifying the margin size for the component's bottom (compliant to CSS margin-bottom). | String |
| marginLeft | A string value specifying the margin size for the component's left (compliant to CSS margin-left). | String |
| marginRight | A string value specifying the margin size for the component's right (compliant to CSS margin-right). | String |
| marginTop | A string value specifying the margin size for the component's top (compliant to CSS margin-top). | String |
| margins | A string value specifying the margins for the component (compliant to CSS margin). | String |
| maximum | An int value specifying the upper limit for the value of the component. | String |
| minimum | An int value specifying the lower limit for the value of the component. | String |
| mouseOutListener | Executed when the pointer leaves the area of the component. A string that represent a javascript expression to evaluate. | String |
| mouseOverListener | Executed when the pointer hover the component's area. A string that represent a javascript expression to evaluate. | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| unlockedClientAttributeNames | A string value holding a comma separated list of the client modifiable properties. | String |
| userEventListener | Executed when the component is called. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| value | A string value holding the current value of the component. | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
| x | A string value (as specified by CSS) for the x position of the component. | String |
| y | A string value (as specified by CSS) for the x position of the component. | String |
<p>The progressIndicator Component indicates the evolution of a task. It uses the <a href="/comps/progressBarComponent.html">porgressBar Component</a> and add text information to it.</p> <p>The progressIndicator Component has the following capabilities : <ul> <li>Position & Size</li> <li>Foreground & Background Color</li> <li>Text, font & image</li> <li>Margin & border</li> <li>Help</li> <li>Visibility</li> </ul> </p>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| height | A string value (as specified by CSS) for the height of the component. | String |
| helpMessage | A string value specifying the message to be shown by a <a href="/comps/helpMessageZoneComponent.html">helpMessageZone Component</a>. | String |
| helpURL | An URL that points to a help page for the component. it is used for example by a <a href="/comps/helpButtonComponent.html">helpButton Component</a>. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| indeterminate | A boolean value indicating wether the value is not determinated. | String |
| lookId | A string value specifying the choosen look of the component. | String |
| marginBottom | A string value specifying the margin size for the component's bottom (compliant to CSS margin-bottom). | String |
| marginLeft | A string value specifying the margin size for the component's left (compliant to CSS margin-left). | String |
| marginRight | A string value specifying the margin size for the component's right (compliant to CSS margin-right). | String |
| marginTop | A string value specifying the margin size for the component's top (compliant to CSS margin-top). | String |
| margins | A string value specifying the margins for the component (compliant to CSS margin). | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| userEventListener | Executed when the component is called. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
| x | A string value (as specified by CSS) for the x position of the component. | String |
| y | A string value (as specified by CSS) for the x position of the component. | String |
<p>The radioButton Component is based on the standard HTML tag <INPUT TYPE="radio">. It can interoperate automatically with other radioButtons from the same group.</p> <p>The radioButton Component has the following capabilities : <ul> <li>Position & Size</li> <li>Foreground & Background Color</li> <li>Text & font</li> <li>Help</li> <li>Visibility, Read-Only, Disabled</li> <li>Events Handling</li> </ul> </p>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| accessKey | A string that indicates the alphanumeric key used to execute an action from the keyboard (in conjunction with a alteration key ex : Alt). | String |
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| blurListener | Executed when the focus quits the component. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| converter | The converter id to use. as specified in faces-config.xml. | String |
| disabled | A boolean value that represents the disabled state of the component. | String |
| focusListener | Executed when the component gets the focus. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| fontBold | A boolean value indicating the <i>bold</i> property for the specified font. | String |
| fontItalic | A boolean value indicating the <i>italic</i> property for the specified font. | String |
| fontName | A string value indicating the name of the font used for this component. | String |
| fontSize | A string indicating the size to use for the selected font. (or any other CSS accepted value for font size). <br/> values [xx-small|x-small|small|medium|large|x-large|xx-large|smaller|larger|<i>length</i> for example 10px|<i>%</i>] | String |
| fontUnderline | A boolean value indicating the <i>underline</i> property for the specified font. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| groupName | A string specifying the name of the virtual entity that links different components together. | String |
| height | A string value (as specified by CSS) for the height of the component. | String |
| helpMessage | A string value specifying the message to be shown by a <a href="/comps/helpMessageZoneComponent.html">helpMessageZone Component</a>. | String |
| helpURL | An URL that points to a help page for the component. it is used for example by a <a href="/comps/helpButtonComponent.html">helpButton Component</a>. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| immediate | A boolean value indicating that this component's value must be converted and validated immediately (that is, during Apply Request Values phase), rather than waiting until Process Validations phase. | String |
| initListener | Executed when the component is intialized. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyDownListener | Executed when the component detects a key down event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyPressListener | Executed when the component detects a key pressed event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| keyUpListener | Executed when the component detects a key up event. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| lookId | A string value specifying the choosen look of the component. | String |
| marginBottom | A string value specifying the margin size for the component's bottom (compliant to CSS margin-bottom). | String |
| marginLeft | A string value specifying the margin size for the component's left (compliant to CSS margin-left). | String |
| marginRight | A string value specifying the margin size for the component's right (compliant to CSS margin-right). | String |
| marginTop | A string value specifying the margin size for the component's top (compliant to CSS margin-top). | String |
| margins | A string value specifying the margins for the component (compliant to CSS margin). | String |
| mouseOutListener | Executed when the pointer leaves the area of the component. A string that represent a javascript expression to evaluate. | String |
| mouseOverListener | Executed when the pointer hover the component's area. A string that represent a javascript expression to evaluate. | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| radioValue | A string value specifying the value associated with the group when this component is selected. | String |
| readOnly | A boolean value indicating that this component will prohibit changes by the user. The element may receive focus unless it has also been disabled. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| required | A boolean value indicating that the user is required to provide a submitted value for this input component. | String |
| selected | A boolean value indicating wether the component is selected. | String |
| selectionListener | Executed when the component is selected. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| tabIndex | An int value specifying the position of this element in the tabbing order for the current document. This value must be an integer between 0 and 32767. | String |
| text | A string value specifying the text (literal or binding) to be shown. | String |
| textAlignment | A string value specifying the alignement for the text in the component : <ul><li> left </li><li> right </li><li> center </li></ul> | String |
| textPosition | A string value specifying the position of the text in the component : <ul><li> left </li><li> right </li><li> top </li><li> bottom </li></ul> | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| unlockedClientAttributeNames | A string value holding a comma separated list of the client modifiable properties. | String |
| userEventListener | Executed when the component is called. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| value | A string value holding the current value of the component. | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
| x | A string value (as specified by CSS) for the x position of the component. | String |
| y | A string value (as specified by CSS) for the x position of the component. | String |
<p>The resetButton Component is based on the standard HTML tag <INPUT TYPE="reset">. It is a <a href="/comps/buttonComponent.html">button Component</a>.</p> <p>The resetButton Component has the following capabilities : <ul> <li>Position & Size</li> <li>Foreground & Background Color</li> <li>Text & font</li> <li>Help</li> <li>Visibility, Read-Only, Disabled</li> <li>Events Handling</li> </ul> </p>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| accessKey | A string that indicates the alphanumeric key used to execute an action from the keyboard (in conjunction with a alteration key ex : Alt). | String |
| action | A string that indicates the url to activate on the server when the component is actionned through a key mapping on the faces config file. | String |
| actionListener | Executed when the the component is activated by the user. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| backgroundColor | A color value (as specified by CSS) for the background. | String |
| binding | The value binding expression linking this component to a property in a backing bean. | String |
| blurListener | Executed when the focus quits the component. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| disabled | A boolean value that represents the disabled state of the component. | String |
| focusListener | Executed when the component gets the focus. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| fontBold | A boolean value indicating the <i>bold</i> property for the specified font. | String |
| fontItalic | A boolean value indicating the <i>italic</i> property for the specified font. | String |
| fontName | A string value indicating the name of the font used for this component. | String |
| fontSize | A string indicating the size to use for the selected font. (or any other CSS accepted value for font size). <br/> values [xx-small|x-small|small|medium|large|x-large|xx-large|smaller|larger|<i>length</i> for example 10px|<i>%</i>] | String |
| fontUnderline | A boolean value indicating the <i>underline</i> property for the specified font. | String |
| foregroundColor | A color value (as specified by CSS) for the text. | String |
| height | A string value (as specified by CSS) for the height of the component. | String |
| helpMessage | A string value specifying the message to be shown by a <a href="/comps/helpMessageZoneComponent.html">helpMessageZone Component</a>. | String |
| helpURL | An URL that points to a help page for the component. it is used for example by a <a href="/comps/helpButtonComponent.html">helpButton Component</a>. | String |
| hiddenMode | A string value specifying the management of invisible state on the client. Authorized values are : <ul><li> server : if not visible, nothing is sent to the client </li><li> phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component </li><li> ignore : if not visible, the data is sent to the client but no page estate is reserved </li></ul> | String |
| id | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. | String |
| immediate | A boolean value indicating that this component's value must be converted and validated immediately (that is, during Apply Request Values phase), rather than waiting until Process Validations phase. | String |
| initListener | Executed when the component is intialized. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| lookId | A string value specifying the choosen look of the component. | String |
| marginBottom | A string value specifying the margin size for the component's bottom (compliant to CSS margin-bottom). | String |
| marginLeft | A string value specifying the margin size for the component's left (compliant to CSS margin-left). | String |
| marginRight | A string value specifying the margin size for the component's right (compliant to CSS margin-right). | String |
| marginTop | A string value specifying the margin size for the component's top (compliant to CSS margin-top). | String |
| margins | A string value specifying the margins for the component (compliant to CSS margin). | String |
| mouseOutListener | Executed when the pointer leaves the area of the component. A string that represent a javascript expression to evaluate. | String |
| mouseOverListener | Executed when the pointer hover the component's area. A string that represent a javascript expression to evaluate. | String |
| propertyChangeListener | Executed when a component's property is changed (by javascript). A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| readOnly | A boolean value indicating that this component will prohibit changes by the user. The element may receive focus unless it has also been disabled. | String |
| rendered | A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | String |
| selectionListener | Executed when the component is selected. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| styleClass | A space-separated list of CSS style class(es) to be applied to the component. This value will be passed through as the "class" attribute on generated markup. | String |
| tabIndex | An int value specifying the position of this element in the tabbing order for the current document. This value must be an integer between 0 and 32767. | String |
| text | A string value specifying the text (literal or binding) to be shown. | String |
| textAlignment | A string value specifying the alignement for the text in the component : <ul><li> left </li><li> right </li><li> center </li></ul> | String |
| toolTipText | A string value specifying the tooltip for the component (shown when the pointe hover the component). | String |
| unlockedClientAttributeNames | A string value holding a comma separated list of the client modifiable properties. | String |
| userEventListener | Executed when the component is called. A string that represent a javascript expression to evaluate and eventually a server action to execute. the two parts are separated by a semi-column. If the javascript evaluation return false (by using the return keyword) the server action is not executed. The server action is represented by a binding. | String |
| value | A string value holding the current value of the component. | String |
| visible | A boolean value indicating wether the composant is visible. | String |
| width | A string value (as specified by CSS) for the width of the component. | String |
| x | A string value (as specified by CSS) for the x position of the component. | String |
| y | A string value (as specified by CSS) for the x position of the component. | String |
<p>The ruler Component is the <HR> HTML equivalent.</p> <p>It is used often when simple HTML is not desirable : for example if a part of a page is loaded via AJAX it might be easier to have only a jsf tree memory represantation.</p> <p>The ruler Component has the following capability : <ul> <li>Position & Size</li> <li>Foreground & Background Color</li> <li>Visibility</li> <li>Margin</li> </ul> </p>
Can contain:JSP
| Name | Description | Type |
|---|---|---|
| alignment | A string that represents the alignement of the data in the component. <ul><li> left </li><li> right </li><li> center </li></ul> | String |