Paquete | com.adobe.icc.editors.managers |
Clase | public class ContentSearchManager |
Herencia | ContentSearchManager EventDispatcher Object |
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Asset Composer 10 |
Versiones de motor de ejecución: | AIR (unsupported), Flash Player 10.2 |
ContentSearchManager
lets you search for content in the system by name.
ContentSearchManager
abstracts the query required to search for data modules
by their name. This can be used for simple and frequent content searches. In case, a more complex
search is required, the search APIs and the associated Query objects must be used instead.
Similar to flex's HTTPService, this class has a lastResult
bindable property which
can be conveniently used to display the result of the last search made on the UI.
Elementos de API relacionados
com.adobe.livecycle.assetmanager.client.service.search.cms.ICMSQueryService
Propiedad | Definido por | ||
---|---|---|---|
constructor : Object
Una referencia a la clase de objeto o función constructora para una instancia de objeto determinada. | Object | ||
lastResult : ListCollectionView
The list of ModuleModel objects reflecting the result of the last search query executed. | ContentSearchManager | ||
lastSearchString : String
The last query string that was used to invoke search on ContentSearchManager. | ContentSearchManager |
Método | Definido por | ||
---|---|---|---|
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registra un objeto de detector de eventos con un objeto EventDispatcher, de modo que el detector reciba la notificación de un evento. | EventDispatcher | ||
Distribuye un evento en el flujo del evento. | EventDispatcher | ||
Re-executes the last search in order to refresh the results. | ContentSearchManager | ||
Comprueba si el objeto EventDispatcher tiene detectores registrados para un tipo concreto de evento. | EventDispatcher | ||
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 | ||
Indica si existe la propiedad especificada y si es enumerable. | Object | ||
Elimina un detector del objeto EventDispatcher. | EventDispatcher | ||
Searches the server for asset matching the passed name. | ContentSearchManager | ||
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 | ||
Comprueba si hay registrado un detector de eventos con este objeto EventDispatcher o con cualquiera de sus ascendientes para el tipo de evento concreto. | EventDispatcher |
Evento | Resumen | Definido por | ||
---|---|---|---|---|
[evento broadcast] Se distribuye cuando Flash Player o AIR pasan a estar activos. | EventDispatcher | |||
Dispatched when a search invoked on the ContentSearchManager completes successfully. | ContentSearchManager | |||
[evento broadcast] Se distribuye cuando Flash Player o de AIR pasan a estar inactivos. | EventDispatcher | |||
Dispatched when a search invoked on the ContentSearchManager fails. | ContentSearchManager |
lastResult | propiedad |
public var lastResult:ListCollectionView
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Asset Composer 10 |
Versiones de motor de ejecución: | AIR (unsupported), Flash Player 10.2 |
The list of ModuleModel objects reflecting the result of the last search query executed.
The list holds objects of type ModuleModel
which is a super class representing
the various modules in the system viz. Texts, Images, Lists and Conditions.
Esta propiedad se puede utilizar como origen para la vinculación de datos. Cuando se modifica esta propiedad, distribuye el evento complete
.
lastSearchString | propiedad |
lastSearchString:String
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Asset Composer 10 |
Versiones de motor de ejecución: | AIR (unsupported), Flash Player 10.2 |
The last query string that was used to invoke search on ContentSearchManager
.
Esta propiedad se puede utilizar como origen para la vinculación de datos. Cuando se modifica esta propiedad, distribuye el evento propertyChange
.
Implementación
public function get lastSearchString():String
public function set lastSearchString(value:String):void
executeLastSearch | () | método |
public function executeLastSearch():void
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Asset Composer 10 |
Versiones de motor de ejecución: | AIR (unsupported), Flash Player 10.2 |
Re-executes the last search in order to refresh the results.
search | () | método |
public function search(searchString:String):void
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Asset Composer 10 |
Versiones de motor de ejecución: | AIR (unsupported), Flash Player 10.2 |
Searches the server for asset matching the passed name. The type of asset searched for includes Texts, Images, Lists and Conditions.
By default, the search mode is "like", wherein all assets with names containing the search string are returned. An "exact" search can however be invoked by including the search param within quotes e.g. "myasset01"
Parámetros
searchString:String — The name (or part of it) of the asset that needs to be searched.
Could be null or empty which amounts to retrieving everything as search result.
|
complete | Evento |
flash.events.Event
propiedad Event.type =
flash.events.Event
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Asset Composer 10 |
Versiones de motor de ejecución: | AIR (unsupported), Flash Player 10.2 |
Dispatched when a search invoked on the ContentSearchManager
completes successfully.
This event is dispatched in an asynchronous manner when the server responds
for the search requested via the ContentSearchManager
successfully.
fault | Evento |
mx.rpc.events.FaultEvent
propiedad FaultEvent.type =
mx.rpc.events.FaultEvent
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Asset Composer 10 |
Versiones de motor de ejecución: | AIR (unsupported), Flash Player 10.2 |
Dispatched when a search invoked on the ContentSearchManager
fails.
This event is dispatched in an asynchronous manner when the server errors out
for the search requested via the ContentSearchManager
.
Tue Jun 12 2018, 02:12 PM Z