Class sap.ui.commons.RatingIndicatorModule: sap/ui/commons/RatingIndicator

extends Control

RatingIndicator is used to let the user do some rating on a given topic. 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.

Deprecated API:Since version 1.38. Instead, use the sap.m.RatingIndicator control.

Constructor Summary
new sap.ui.commons.RatingIndicator(sId?, mSettings?)Constructor for a new RatingIndicator.
Event Summary
change(oControlEvent)The event is fired when the user has done a rating.
Events borrowed from class sap.ui.core.Control
Method Summary
sap.ui.commons.RatingIndicator.extend(sClassName, oClassInfo?, FNMetaImpl?)Creates a new subclass of class sap.ui.commons.RatingIndicator with name sClassName and enriches it with the information contained in oClassInfo.
sap.ui.commons.RatingIndicator.getMetadata()Returns a metadata object for class sap.ui.commons.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.ui.commons.RatingIndicator.
bindValue(oBindingInfo)Binds property value to model data.
detachChange(fnFunction, oListener)Detaches event handler fnFunction from the change event of this sap.ui.commons.RatingIndicator.
fireChange(mArguments?)Fires event change 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.
getAverageValue()Gets current value of property averageValue.
getEditable()Gets current value of property editable.
getIconHovered()Gets current value of property iconHovered.
getIconSelected()Gets current value of property iconSelected.
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.
setAverageValue(fAverageValue)Sets a new value for property averageValue.
setEditable(bEditable)Sets a new value for property editable.
setIconHovered(sIconHovered)Sets a new value for property iconHovered.
setIconSelected(sIconSelected)Sets a new value for property iconSelected.
setIconUnselected(sIconUnselected)Sets a new value for property iconUnselected.
setMaxValue(iMaxValue)Setter for property maxValue.
setValue(fValue)Sets a new value for property value.
setVisualMode(sVisualMode)Sets a new value for property visualMode.
unbindValue()Unbinds property value from model data.
Constructor Detail
new sap.ui.commons.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:

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
Deprecated:
Since version 1.38. Instead, use the sap.m.RatingIndicator 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 value of the user rating
Method Detail
sap.ui.commons.RatingIndicator.extend(sClassName, oClassInfo?, FNMetaImpl?): function
Creates a new subclass of class sap.ui.commons.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.ui.commons.RatingIndicator.getMetadata(): sap.ui.base.Metadata
Returns a metadata object for class sap.ui.commons.RatingIndicator.
Returns:
{sap.ui.base.Metadata} Metadata object describing this class
addAriaDescribedBy(vAriaDescribedBy): sap.ui.commons.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.ui.commons.RatingIndicator} Reference to this in order to allow method chaining
addAriaLabelledBy(vAriaLabelledBy): sap.ui.commons.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.ui.commons.RatingIndicator} Reference to this in order to allow method chaining
attachChange(oData?, fnFunction, oListener?): sap.ui.commons.RatingIndicator
Attaches event handler fnFunction to the change event of this sap.ui.commons.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.ui.commons.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.ui.commons.RatingIndicator itself
Returns:
{sap.ui.commons.RatingIndicator} Reference to this in order to allow method chaining
bindValue(oBindingInfo): sap.ui.commons.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.ui.commons.RatingIndicator} Reference to this in order to allow method chaining
detachChange(fnFunction, oListener): sap.ui.commons.RatingIndicator
Detaches event handler fnFunction from the change event of this sap.ui.commons.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.ui.commons.RatingIndicator} Reference to this in order to allow method chaining
fireChange(mArguments?): sap.ui.commons.RatingIndicator
Fires event change to attached listeners.

Expects the following event parameters:

  • value of type intThe value of the user rating
Parameters:
{Map}mArguments? The arguments to pass along with the event
Returns:
{sap.ui.commons.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[]}
getAverageValue(): float
Gets current value of property averageValue.

Determines the average value. This value is shown if no value is set. This can be used to display an average Value before the user votes.

Default value is 0.

Returns:
{float} Value of property averageValue
getEditable(): boolean
Gets current value of property editable.

Determines if the rating symbols can be edited.

Default value is true.

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

The URI to the image which is displayed when the mouse hovers onto a rating symbol. If used, a requirement is that all custom icons need to have the same size. Note that when this attribute is used also the other icon attributes need to be 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 image which shall be displayed for all selected rating symbols. Note that when this attribute is used, also the other icon attributes need to be set.

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

The URI to the image which shall be displayed for all unselected rating symbols. If this attribute is used, a requirement is that all custom icons need to have the same size. Note that when this attribute is used also the other icon attributes need to be set.

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

Determines the number of displayed rating symbols

Default value is 5.

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

Determines the currently selected value. If value is set to sap.ui.commons.RatingIndicator.NoValue, the averageValue is shown.

Default value is 0.

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

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

Default value is Half.

Returns:
{sap.ui.commons.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
setAverageValue(fAverageValue): sap.ui.commons.RatingIndicator
Sets a new value for property averageValue.

Determines the average value. This value is shown if no value is set. This can be used to display an average Value before the user votes.

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

Default value is 0.

Parameters:
{float}fAverageValue New value for property averageValue
Returns:
{sap.ui.commons.RatingIndicator} Reference to this in order to allow method chaining
setEditable(bEditable): sap.ui.commons.RatingIndicator
Sets a new value for property editable.

Determines if the rating symbols can be edited.

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

Default value is true.

Parameters:
{boolean}bEditable New value for property editable
Returns:
{sap.ui.commons.RatingIndicator} Reference to this in order to allow method chaining
setIconHovered(sIconHovered): sap.ui.commons.RatingIndicator
Sets a new value for property iconHovered.

The URI to the image which is displayed when the mouse hovers onto a rating symbol. If used, a requirement is that all custom icons need to have the same size. Note that when this attribute is used also the other icon attributes need to be set.

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

Parameters:
{sap.ui.core.URI}sIconHovered New value for property iconHovered
Returns:
{sap.ui.commons.RatingIndicator} Reference to this in order to allow method chaining
setIconSelected(sIconSelected): sap.ui.commons.RatingIndicator
Sets a new value for property iconSelected.

The URI to the image which shall be displayed for all selected rating symbols. Note that when this attribute is used, also the other icon attributes need to be set.

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

Parameters:
{sap.ui.core.URI}sIconSelected New value for property iconSelected
Returns:
{sap.ui.commons.RatingIndicator} Reference to this in order to allow method chaining
setIconUnselected(sIconUnselected): sap.ui.commons.RatingIndicator
Sets a new value for property iconUnselected.

The URI to the image which shall be displayed for all unselected rating symbols. If this attribute is used, a requirement is that all custom icons need to have the same size. Note that when this attribute is used also the other icon attributes need to be set.

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

Parameters:
{sap.ui.core.URI}sIconUnselected New value for property iconUnselected
Returns:
{sap.ui.commons.RatingIndicator} Reference to this in order to allow method chaining
setMaxValue(iMaxValue): sap.ui.commons.RatingIndicator
Setter for property maxValue.

Default value is 5 Minimum value is 1

Parameters:
{int}iMaxValue new value for property maxValue
Returns:
{sap.ui.commons.RatingIndicator}this to allow method chaining
Sets a new value for property value.

Determines the currently selected value. If value is set to sap.ui.commons.RatingIndicator.NoValue, the averageValue is shown.

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

Default value is 0.

Parameters:
{float}fValue New value for property value
Returns:
{sap.ui.commons.RatingIndicator} Reference to this in order to allow method chaining
setVisualMode(sVisualMode): sap.ui.commons.RatingIndicator
Sets a new value for property visualMode.

Defines how float values are visualized: Full, Half, Continuous (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.ui.commons.RatingIndicatorVisualMode}sVisualMode New value for property visualMode
Returns:
{sap.ui.commons.RatingIndicator} Reference to this in order to allow method chaining
Unbinds property value from model data.
Returns:
{sap.ui.commons.RatingIndicator} Reference to this in order to allow method chaining