Class sap.m.RatingIndicatorModule: sap/m/RatingIndicator

extends Control

Is used to rate content. The amount of rating symbols can be specified, as well as the URIs to the image icons which shall be used as rating symbols. When the user performs a rating, an event is fired.


Since: 1.14.
Constructor Summary
new sap.m.RatingIndicator(sId?, mSettings?)Constructor for a new RatingIndicator.
Event Summary
change(oControlEvent)The event is fired when the user has done a rating.
liveChange(oControlEvent)This event is triggered during the dragging period, each time the rating value changes.
Events borrowed from class sap.ui.core.Control
Method Summary
sap.m.RatingIndicator.extend(sClassName, oClassInfo?, FNMetaImpl?)Creates a new subclass of class sap.m.RatingIndicator with name sClassName and enriches it with the information contained in oClassInfo.
sap.m.RatingIndicator.getMetadata()Returns a metadata object for class sap.m.RatingIndicator.
addAriaDescribedBy(vAriaDescribedBy)Adds some ariaDescribedBy into the association ariaDescribedBy.
addAriaLabelledBy(vAriaLabelledBy)Adds some ariaLabelledBy into the association ariaLabelledBy.
attachChange(oData?, fnFunction, oListener?)Attaches event handler fnFunction to the change event of this sap.m.RatingIndicator.
attachLiveChange(oData?, fnFunction, oListener?)Attaches event handler fnFunction to the liveChange event of this sap.m.RatingIndicator.
bindValue(oBindingInfo)Binds property value to model data.
detachChange(fnFunction, oListener)Detaches event handler fnFunction from the change event of this sap.m.RatingIndicator.
detachLiveChange(fnFunction, oListener)Detaches event handler fnFunction from the liveChange event of this sap.m.RatingIndicator.
fireChange(mArguments?)Fires event change to attached listeners.
fireLiveChange(mArguments?)Fires event liveChange to attached listeners.
getAriaDescribedBy()Returns array of IDs of the elements which are the current targets of the association ariaDescribedBy.
getAriaLabelledBy()Returns array of IDs of the elements which are the current targets of the association ariaLabelledBy.
getEnabled()Gets current value of property enabled.
getIconHovered()Gets current value of property iconHovered.
getIconSelected()Gets current value of property iconSelected.
getIconSize()Gets current value of property iconSize.
getIconUnselected()Gets current value of property iconUnselected.
getMaxValue()Gets current value of property maxValue.
getValue()Gets current value of property value.
getVisualMode()Gets current value of property visualMode.
removeAllAriaDescribedBy()Removes all the controls in the association named ariaDescribedBy.
removeAllAriaLabelledBy()Removes all the controls in the association named ariaLabelledBy.
removeAriaDescribedBy(vAriaDescribedBy)Removes an ariaDescribedBy from the association named ariaDescribedBy.
removeAriaLabelledBy(vAriaLabelledBy)Removes an ariaLabelledBy from the association named ariaLabelledBy.
setEnabled(bEnabled)Sets a new value for property enabled.
setIconHovered(sURI)Sets the hovered icon without rerendering the control.
setIconSelected(sURI)Sets the selected icon without rerendering the control.
setIconSize(sIconSize)Sets the icon size value.
setIconUnselected(sURI)Sets the unselected icon without rerendering the control.
setMaxValue(iMaxValue)Sets a new value for property maxValue.
setValue(fValue)Sets the rating value.
setVisualMode(sVisualMode)Sets a new value for property visualMode.
unbindValue()Unbinds property value from model data.
Constructor Detail
new sap.m.RatingIndicator(sId?, mSettings?)
Constructor for a new RatingIndicator.

Accepts an object literal mSettings that defines initial property values, aggregated and associated objects as well as event handlers. See sap.ui.base.ManagedObject for a general description of the syntax of the settings object.

The supported settings are:

  • Properties
  • Aggregations
    • Events
      • change : fnListenerFunction or [fnListenerFunction, oListenerObject] or [oData, fnListenerFunction, oListenerObject]
      • liveChange : fnListenerFunction or [fnListenerFunction, oListenerObject] or [oData, fnListenerFunction, oListenerObject]

    In addition, all settings applicable to the base type sap.ui.core.Control can be used as well.

    Parameters:
    {string}sId? id for the new control, generated automatically if no id is given
    {object}mSettings? initial settings for the new control
    Event Detail
    change(oControlEvent)
    The event is fired when the user has done a rating.
    Parameters:
    {sap.ui.base.Event}oControlEvent
    {sap.ui.base.EventProvider}oControlEvent.getSource
    {object}oControlEvent.getParameters
    {int}oControlEvent.getParameters.value The rated value
    liveChange(oControlEvent)
    This event is triggered during the dragging period, each time the rating value changes.
    Parameters:
    {sap.ui.base.Event}oControlEvent
    {sap.ui.base.EventProvider}oControlEvent.getSource
    {object}oControlEvent.getParameters
    {float}oControlEvent.getParameters.value The current value of the rating after a live change event.
    Method Detail
    sap.m.RatingIndicator.extend(sClassName, oClassInfo?, FNMetaImpl?): function
    Creates a new subclass of class sap.m.RatingIndicator with name sClassName and enriches it with the information contained in oClassInfo.

    oClassInfo might contain the same kind of information as described in sap.ui.core.Control.extend.

    Parameters:
    {string}sClassName Name of the class being created
    {object}oClassInfo? Object literal with information about the class
    {function}FNMetaImpl? Constructor function for the metadata object; if not given, it defaults to sap.ui.core.ElementMetadata
    Returns:
    {function} Created class / constructor function
    sap.m.RatingIndicator.getMetadata(): sap.ui.base.Metadata
    Returns a metadata object for class sap.m.RatingIndicator.
    Returns:
    {sap.ui.base.Metadata} Metadata object describing this class
    addAriaDescribedBy(vAriaDescribedBy): sap.m.RatingIndicator
    Adds some ariaDescribedBy into the association ariaDescribedBy.
    Parameters:
    {string|sap.ui.core.Control}vAriaDescribedBy the ariaDescribedBy to add; if empty, nothing is inserted
    Returns:
    {sap.m.RatingIndicator} Reference to this in order to allow method chaining
    addAriaLabelledBy(vAriaLabelledBy): sap.m.RatingIndicator
    Adds some ariaLabelledBy into the association ariaLabelledBy.
    Parameters:
    {string|sap.ui.core.Control}vAriaLabelledBy the ariaLabelledBy to add; if empty, nothing is inserted
    Returns:
    {sap.m.RatingIndicator} Reference to this in order to allow method chaining
    attachChange(oData?, fnFunction, oListener?): sap.m.RatingIndicator
    Attaches event handler fnFunction to the change event of this sap.m.RatingIndicator.

    When called, the context of the event handler (its this) will be bound to oListener if specified, otherwise it will be bound to this sap.m.RatingIndicator itself.

    The event is fired when the user has done a rating.

    Parameters:
    {object}oData? An application-specific payload object that will be passed to the event handler along with the event object when firing the event
    {function}fnFunction The function to be called when the event occurs
    {object}oListener? Context object to call the event handler with. Defaults to this sap.m.RatingIndicator itself
    Returns:
    {sap.m.RatingIndicator} Reference to this in order to allow method chaining
    attachLiveChange(oData?, fnFunction, oListener?): sap.m.RatingIndicator
    Attaches event handler fnFunction to the liveChange event of this sap.m.RatingIndicator.

    When called, the context of the event handler (its this) will be bound to oListener if specified, otherwise it will be bound to this sap.m.RatingIndicator itself.

    This event is triggered during the dragging period, each time the rating value changes.

    Parameters:
    {object}oData? An application-specific payload object that will be passed to the event handler along with the event object when firing the event
    {function}fnFunction The function to be called when the event occurs
    {object}oListener? Context object to call the event handler with. Defaults to this sap.m.RatingIndicator itself
    Returns:
    {sap.m.RatingIndicator} Reference to this in order to allow method chaining
    bindValue(oBindingInfo): sap.m.RatingIndicator
    Binds property value to model data.

    See ManagedObject.bindProperty for a detailed description of the possible properties of oBindingInfo

    Parameters:
    {object}oBindingInfo The binding information
    Returns:
    {sap.m.RatingIndicator} Reference to this in order to allow method chaining
    detachChange(fnFunction, oListener): sap.m.RatingIndicator
    Detaches event handler fnFunction from the change event of this sap.m.RatingIndicator.

    The passed function and listener object must match the ones used for event registration.

    Parameters:
    {function}fnFunction The function to be called, when the event occurs
    {object}oListener Context object on which the given function had to be called
    Returns:
    {sap.m.RatingIndicator} Reference to this in order to allow method chaining
    detachLiveChange(fnFunction, oListener): sap.m.RatingIndicator
    Detaches event handler fnFunction from the liveChange event of this sap.m.RatingIndicator.

    The passed function and listener object must match the ones used for event registration.

    Parameters:
    {function}fnFunction The function to be called, when the event occurs
    {object}oListener Context object on which the given function had to be called
    Returns:
    {sap.m.RatingIndicator} Reference to this in order to allow method chaining
    fireChange(mArguments?): sap.m.RatingIndicator
    Fires event change to attached listeners.

    Expects the following event parameters:

    • value of type intThe rated value
    Parameters:
    {Map}mArguments? The arguments to pass along with the event
    Returns:
    {sap.m.RatingIndicator} Reference to this in order to allow method chaining
    fireLiveChange(mArguments?): sap.m.RatingIndicator
    Fires event liveChange to attached listeners.

    Expects the following event parameters:

    • value of type floatThe current value of the rating after a live change event.
    Parameters:
    {Map}mArguments? The arguments to pass along with the event
    Returns:
    {sap.m.RatingIndicator} Reference to this in order to allow method chaining
    getAccessibilityInfo()
    See:
    {sap.ui.core.Control#getAccessibilityInfo}
    getAriaDescribedBy(): sap.ui.core.Control[]
    Returns array of IDs of the elements which are the current targets of the association ariaDescribedBy.
    Returns:
    {sap.ui.core.Control[]}
    getAriaLabelledBy(): sap.ui.core.Control[]
    Returns array of IDs of the elements which are the current targets of the association ariaLabelledBy.
    Returns:
    {sap.ui.core.Control[]}
    getEnabled(): boolean
    Gets current value of property enabled.

    Value "true" is required to let the user rate with this control. It is recommended to set this parameter to "false" for the "Small" size which is meant for indicating a value only

    Default value is true.

    Returns:
    {boolean} Value of property enabled
    getIconHovered(): sap.ui.core.URI
    Gets current value of property iconHovered.

    The URI to the icon font icon or image that will be displayed for hovered rating symbols. A star icon will be used if the property is not set

    Returns:
    {sap.ui.core.URI} Value of property iconHovered
    getIconSelected(): sap.ui.core.URI
    Gets current value of property iconSelected.

    The URI to the icon font icon or image that will be displayed for selected rating symbols. A star icon will be used if the property is not set

    Returns:
    {sap.ui.core.URI} Value of property iconSelected
    getIconSize(): sap.ui.core.CSSSize
    Gets current value of property iconSize.

    The Size of the image or icon to be displayed. The default value depends on the theme. Please be sure that the size is corresponding to a full pixel value as some browsers don't support subpixel calculations. Recommended size is 1.375rem (22px) for normal, 1rem (16px) for small, and 2rem (32px) for large icons correspondingly.

    Returns:
    {sap.ui.core.CSSSize} Value of property iconSize
    getIconUnselected(): sap.ui.core.URI
    Gets current value of property iconUnselected.

    The URI to the icon font icon or image that will be displayed for all unselected rating symbols. A star icon will be used if the property is not set

    Returns:
    {sap.ui.core.URI} Value of property iconUnselected
    getMaxValue(): int
    Gets current value of property maxValue.

    The number of displayed rating symbols

    Default value is 5.

    Returns:
    {int} Value of property maxValue
    getValue(): float
    Gets current value of property value.

    The indicated value of the rating

    Default value is 0.

    Returns:
    {float} Value of property value
    Gets current value of property visualMode.

    Defines how float values are visualized: Full, Half (see enumeration RatingIndicatorVisualMode)

    Default value is Half.

    Returns:
    {sap.m.RatingIndicatorVisualMode} Value of property visualMode
    removeAllAriaDescribedBy(): sap.ui.core.Control[]
    Removes all the controls in the association named ariaDescribedBy.
    Returns:
    {sap.ui.core.Control[]} An array of the removed elements (might be empty)
    removeAllAriaLabelledBy(): sap.ui.core.Control[]
    Removes all the controls in the association named ariaLabelledBy.
    Returns:
    {sap.ui.core.Control[]} An array of the removed elements (might be empty)
    removeAriaDescribedBy(vAriaDescribedBy): sap.ui.core.Control
    Removes an ariaDescribedBy from the association named ariaDescribedBy.
    Parameters:
    {int|string|sap.ui.core.Control}vAriaDescribedBy The ariaDescribedByto be removed or its index or ID
    Returns:
    {sap.ui.core.Control} the removed ariaDescribedBy or null
    removeAriaLabelledBy(vAriaLabelledBy): sap.ui.core.Control
    Removes an ariaLabelledBy from the association named ariaLabelledBy.
    Parameters:
    {int|string|sap.ui.core.Control}vAriaLabelledBy The ariaLabelledByto be removed or its index or ID
    Returns:
    {sap.ui.core.Control} the removed ariaLabelledBy or null
    setEnabled(bEnabled): sap.m.RatingIndicator
    Sets a new value for property enabled.

    Value "true" is required to let the user rate with this control. It is recommended to set this parameter to "false" for the "Small" size which is meant for indicating a value only

    When called with a value of null or undefined, the default value of the property will be restored.

    Default value is true.

    Parameters:
    {boolean}bEnabled New value for property enabled
    Returns:
    {sap.m.RatingIndicator} Reference to this in order to allow method chaining
    setIconHovered(sURI): sap.m.RatingIndicator
    Sets the hovered icon without rerendering the control.
    Parameters:
    {sap.ui.core.URI}sURI
    Returns:
    {sap.m.RatingIndicator} Returns this to facilitate method chaining.
    setIconSelected(sURI): sap.m.RatingIndicator
    Sets the selected icon without rerendering the control.
    Parameters:
    {sap.ui.core.URI}sURI
    Returns:
    {sap.m.RatingIndicator} Returns this to facilitate method chaining.
    setIconSize(sIconSize): sap.m.RatingIndicator
    Sets the icon size value. The method is automatically updating the UI components if the control has been rendered before.
    Parameters:
    {sap.ui.core.CSSSize}sIconSize
    Returns:
    {sap.m.RatingIndicator} Returns this to facilitate method chaining.
    setIconUnselected(sURI): sap.m.RatingIndicator
    Sets the unselected icon without rerendering the control.
    Parameters:
    {sap.ui.core.URI}sURI
    Returns:
    {sap.m.RatingIndicator} Returns this to facilitate method chaining.
    setMaxValue(iMaxValue): sap.m.RatingIndicator
    Sets a new value for property maxValue.

    The number of displayed rating symbols

    When called with a value of null or undefined, the default value of the property will be restored.

    Default value is 5.

    Parameters:
    {int}iMaxValue New value for property maxValue
    Returns:
    {sap.m.RatingIndicator} Reference to this in order to allow method chaining
    setValue(fValue): sap.m.RatingIndicator
    Sets the rating value. The method is automatically checking whether the value is in the valid range of 0-maxValue and if it is a valid number. Calling the setter with null or undefined will reset the value to it's default.
    Parameters:
    {float}fValue The rating value to be set.
    Returns:
    {sap.m.RatingIndicator} Returns this to facilitate method chaining.
    setVisualMode(sVisualMode): sap.m.RatingIndicator
    Sets a new value for property visualMode.

    Defines how float values are visualized: Full, Half (see enumeration RatingIndicatorVisualMode)

    When called with a value of null or undefined, the default value of the property will be restored.

    Default value is Half.

    Parameters:
    {sap.m.RatingIndicatorVisualMode}sVisualMode New value for property visualMode
    Returns:
    {sap.m.RatingIndicator} Reference to this in order to allow method chaining
    unbindValue(): sap.m.RatingIndicator
    Unbinds property value from model data.
    Returns:
    {sap.m.RatingIndicator} Reference to this in order to allow method chaining