Paquete | spark.utils |
Clase | public class LabelUtil |
Herencia | LabelUtil Object |
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 4 |
Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
Propiedades públicas
Métodos públicos
Método | Definido por | ||
---|---|---|---|
Indica si un objeto tiene definida una propiedad especificada. | Object | ||
Indica si hay una instancia de la clase Object en la cadena de prototipo del objeto especificado como parámetro. | Object | ||
[estática]
A function used by components that support item renderers
to determine the correct text an item renderer should display for a data item. | LabelUtil | ||
Indica si existe la propiedad especificada y si es enumerable. | Object | ||
Establece la disponibilidad de una propiedad dinámica para operaciones de bucle. | Object | ||
Devuelve la representación de cadena de este objeto, con formato según las convenciones específicas de configuración regional. | Object | ||
Devuelve la representación de cadena del objeto especificado. | Object | ||
Devuelve el valor simple del objeto especificado. | Object |
Información sobre métodos
itemToLabel | () | método |
public static function itemToLabel(item:Object, labelField:String = null, labelFunction:Function = null):String
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 4 |
Versiones de motor de ejecución: | Flash Player 10, AIR 1.5 |
A function used by components that support item renderers
to determine the correct text an item renderer should display for a data item.
If no labelField
or labelFunction
parameter
is specified, the toString()
method of the data item
is called to return a String representation of the data item.
The labelFunction
property takes a reference to a function.
The function takes a single argument which is the item in
the data provider and returns a String:
myLabelFunction(item:Object):String
Parámetros
item:Object — The data item. Null items return the empty string.
| |
labelField:String (default = null ) — The field in the data item to return. If labelField is set
to an empty string (""), no field will be considered on the data item
to represent label.
| |
labelFunction:Function (default = null ) — A function that takes the data item
as a single parameter and returns a String.
|
String — A String representation for the data item
|
Tue Jun 12 2018, 02:12 PM Z