Summary
Tag name: <hx:progress>
UIComponent class: org.apache.myfaces.html5.component.output.Progress
Tag class: org.apache.myfaces.html5.tag.output.ProgressTag
Component type: org.apache.myfaces.html5.Progress
Component family: org.apache.myfaces.Progress
Renderer type: org.apache.myfaces.html5.Progress
Renderer class: org.apache.myfaces.html5.renderkit.output.ProgressRenderer
Convenience component for Html5 progress element.
Attributes
| Name | Type | Supports EL? | Description |
|---|---|---|---|
| accesskey | String | Yes | HTML: Sets the access key for this element. |
| animationEnd | String | Yes | HTML : Script to run when the animation ends on Html element. |
| dir | String | Yes | HTML: The direction of text display, either 'ltr' (left-to-right) or 'rtl' (right-to-left). |
| draggable | boolean | Yes | HTML: Specifies whether the element is draggable. |
| hidden | boolean | Yes | HTML: Whether the element is relevant. |
| lang | String | Yes | HTML: The base language of this document. |
| maximum | Double | Yes | Maximum value of the progress element. If the value of the progress element reaches the maximum value, then it means the progress is done. |
| onblur | String | Yes | HTML: Specifies a script to be invoked when the element loses focus. |
| onclick | String | Yes | HTML: Script to be invoked when the element is clicked. |
| ondblclick | String | Yes | HTML: Script to be invoked when the element is double-clicked. |
| ondrag | String | Yes | HTML: Handler for event that is fired when the element is dragged. |
| ondragend | String | Yes | HTML: Handler for event that is fired when the drag operation is ended. Successfully or not, this handler will run. |
| ondragenter | String | Yes | HTML: Handler for event that is fired when the element is dragged into a valid drop target. |
| ondragleave | String | Yes | HTML: Handler for event that is fired when the element leaves a valid drop target. |
| ondragover | String | Yes | HTML: Handler for event that is fired when the element is being dragged over a valid drop target. |
| ondragstart | String | Yes | HTML: Handler for event that is fired when the drag operation starts. |
| ondrop | String | Yes | HTML: Handler for event that is fired when the element is being dropped. |
| onfocus | String | Yes | HTML: Specifies a script to be invoked when the element receives focus. |
| onmousedown | String | Yes | HTML: Script to be invoked when the pointing device is pressed over this element. |
| onmousemove | String | Yes | HTML: Script to be invoked when the pointing device is moved while it is in this element. |
| onmouseout | String | Yes | HTML: Script to be invoked when the pointing device is moves out of this element. |
| onmouseover | String | Yes | HTML: Script to be invoked when the pointing device is moved into this element. |
| onmouseup | String | Yes | HTML: Script to be invoked when the pointing device is released over this element. |
| onmousewheel | String | Yes | HTML: Script to be invoked when the pointing device is wheeled over this element. |
| style | String | Yes | HTML: CSS styling instructions. |
| styleClass | String | Yes | The CSS class for this element. Corresponds to the HTML 'class' attribute. |
| tabindex | String | Yes | HTML: Specifies the position of this element within the tab order of the document. |
| title | String | Yes | HTML: An advisory title for this element. Often used by the user agent as a tooltip. |
| value | Double | Yes | Value of the progress element. Value should be in the interval of [0, maximum] |