Html5 Support for Apache MyFaces
Project Documentation
Foundation

Summary

Tag name: <hx:meter>
UIComponent class: org.apache.myfaces.html5.component.output.Meter
Tag class: org.apache.myfaces.html5.tag.output.MeterTag
Component type: org.apache.myfaces.html5.Meter
Component family: org.apache.myfaces.Meter
Renderer type: org.apache.myfaces.html5.Meter
Renderer class: org.apache.myfaces.html5.renderkit.output.MeterRenderer

Convenience tag for the new Html5 meter 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.
high Double Yes Limit of high value of the meter.
Values larger than this value might be displayed in a special way(e.g. in a red color) by the browser.
lang String Yes HTML: The base language of this document.
low Double Yes Limit of low value of the meter.
Values smaller than this value might be displayed in a special way(e.g. in a red color) by the browser.
maximum Double Yes Maximum value of the component, defaults to 1.
Ending point of the meter.
minimum Double Yes Minimum value of the component, defaults to 0.
Starting point of the meter.
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.
optimum Double Yes Optimum value of the meter.
Values close to this value might be displayed in a special way(e.g. in a green color) by the browser.
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 meter. Value should be in the interval of [minimum, maximum]