Referência do ActionScript® 3.0 para Adobe® Flash® Platform
Início  |  Ocultar listas de Pacotes e Classes |  Pacotes  |  Classes  |  Novidades  |  Índice  |  Apêndices  |  Por que inglês?
Filtros: Recuperando dados do servidor...
Recuperando dados do servidor...
lc.procmgmt.events 

FormEvents  - AS3 ADEP Workspace

Pacotelc.procmgmt.events
Classepublic class FormEvents
HerançaFormEvents Inheritance Object

Versão da linguagem: ActionScript 3.0
Versão de produto: Adobe Digital Enterprise Platform Document Services - Workspace 9
Versões de runtime: AIR (unsupported), Flash Player 9, Flash Player 10

The FormEvents class contains the constants for the event types used to communicate between an application built with Flex (Flex application) and Workspace. Unless otherwise indicated, the event class for the event is flash.event.Event.

Communication between the Flex application you create and Workspace occurs when events are dispatched to the sharedEvents.EventDispatcher property on the LoaderInfo object of the Flex application you are creating. For example, to emit an event to Workspace, your Flex application would do the following:

	     systemManager.loaderInfo.sharedEvents.dispatchEvent(new Event(FormEvents.FORM_DATA_INVALID));
	 
The FormConnector class can also be used to simplify event handling between a Flex application and Workspace.

The following numbered list is the general sequence of events that occurs between the Flex application you create and Workspace:

  1. The Flex application you create is loaded by Workspace. A setReady event is dispatched after the Flex application application is finished loading.
  2. Workspace dispatches a formInitialData event to the Flex application with the initial data. If there is no initial data, the event will be a value of null or an empty space for the data property.
  3. The Flex application must either dispatch events of type formDataValid and formDataInvalid as the data changes from one state to the other or emit a single formDataValid event. Workspace may not allow the user to click the Complete button to submit data after a formDataValid event is received. If validation cannot be peformed as the Flex application runs due to performance reasons, a formDataValid event may be emitted in response to the formInitialData event. After a Flex application receives a formSubmitDataRequest event from Workspace, the Flex application must validate the data and then dispatch a formSubmitData event or a formSubmitDataInvalid event
  4. The Flex form can dispatch formClean and formDirty events if the Flex application tracks the status of the data. Workspace will use the events to determine whether the user should be prompted to save their data.
  5. Workspace dispatches a formSaveDataRequest event when the user chooses to save their draft (incomplete) data.
  6. In response to the formSaveDataRequest event, the Flex application must dispatch a formSaveData event with the data as XML.
  7. Workspace dispatches a formSubmitDataRequest event when the user chooses to submit their (completed) data.
  8. In response to the formSubmitDataRequest event, the Flex application must dispatch either a formSubmitData event with the valid form data or a formSubmitDataInvalid event, which indicates that validation failed and the data is not in a valid state to be submitted.
  9. After Workspace receives a formSubmitData event in response to the formSubmitDataRequest event, it will unload the Flex application.

The following events must be supported by the Flex application for it to function within Workspace:

  • FormDataEvent.INITIAL_FORM_DATA
  • FormDataEvent.SAVE_FORM_DATA
  • FormDataEvent.SUBMIT_FORM_DATA
The following events must be sent by the Flex application to Workspace:
  • FormDataEvent.FORM_READY
  • FormDataEvent.FORM_DATA_VALID
  • FormDataEvent.FORM_DATA_INVALID
  • FormDataEvent.FORM_CLEAN
  • FormDataEvent.FORM_DIRTY

Elementos da API relacionados



Propriedades públicas
 PropriedadeDefinido por
 Inheritedconstructor : Object
Uma referência ao objeto de classe ou à função de construtor de uma determinada ocorrência de objeto.
Object
Métodos públicos
 MétodoDefinido por
 Inherited
Indica se um objeto tem uma propriedade especificada definida.
Object
 Inherited
Indica se uma ocorrência da classe Object está na cadeia de protótipos do objeto especificado como o parâmetro.
Object
 Inherited
Indica se a propriedade especificada existe e é enumerável.
Object
 Inherited
Define a disponibilidade de uma propriedade dinâmica para operações de repetição.
Object
 Inherited
Retorna a representação da string deste objeto, formatado segundo as convenções específicas para a localidade.
Object
 Inherited
Retorna a representação de string do objeto especificado.
Object
 Inherited
Retorna o valor primitivo do objeto especificado.
Object
Constantes públicas
 ConstanteDefinido por
  FORM_CLEAN : String = "formClean"
[estático] A special value that specifies that the data in the Flex application has not changed since the Flex application was initialized or the data was last saved.
FormEvents
  FORM_DATA_INVALID : String = "formDataInvalid"
[estático] A special value that specifies that the data is not valid.
FormEvents
  FORM_DATA_VALID : String = "formDataValid"
[estático] A special value that specifies that the data is valid.
FormEvents
  FORM_DIRTY : String = "formDirty"
[estático] A special value that specifies that changes have occurred to the data.
FormEvents
  FORM_INITIAL_DATA : String = "formInitialData"
[estático] A special value that specifies that initial data is sent to the Flex application.
FormEvents
  FORM_READY : String = "formReady"
[estático] A special value that specifies that the Flex application is ready to communicate with Workspace.
FormEvents
  FORM_SAVE_DATA : String = "formSaveData"
[estático] A special value that specifies that the data was saved by Workspace.
FormEvents
  FORM_SAVE_DATA_REQUEST : String = "formSaveDataRequest"
[estático] A special value that specifies that the Save Form button was clicked within Workspace.
FormEvents
  FORM_SUBMIT_DATA : String = "formSubmitData"
[estático] A special value that specifies that the data was successfully submitted by Workspace to the server.
FormEvents
  FORM_SUBMIT_DATA_INVALID : String = "formSubmitDataInvalid"
[estático] A special value that specifies that invalid data that was submitted.
FormEvents
  FORM_SUBMIT_DATA_REQUEST : String = "formSubmitDataRequest"
[estático] A special value that specifies that the Complete button was clicked within Workspace.
FormEvents
Detalhes da constante

FORM_CLEAN

Constante
public static const FORM_CLEAN:String = "formClean"

Versão da linguagem: ActionScript 3.0
Versão de produto: Adobe Digital Enterprise Platform Document Services - Workspace 9
Versões de runtime: AIR (unsupported), Flash Player 9, Flash Player 10

A special value that specifies that the data in the Flex application has not changed since the Flex application was initialized or the data was last saved. If a Flex application does not dispatch this event, Workspace assumes that the formDirty event will not be dispatched and the data is considered always changed. This results in the user always being prompted to save the form regardless of whether changes have been made to the data in the Flex application.

The properties of the event object have the following values:

PropertyValue
bubbles true
cancelable false; there is no default behavior to cancel.
currentTargetThe object that is actively processing the Event object with an event listener.
target The object that dispatched the event; use the currentTarget property to always access the Object listening for the event.

FORM_DATA_INVALID

Constante 
public static const FORM_DATA_INVALID:String = "formDataInvalid"

Versão da linguagem: ActionScript 3.0
Versão de produto: Adobe Digital Enterprise Platform Document Services - Workspace 9
Versões de runtime: AIR (unsupported), Flash Player 9, Flash Player 10

A special value that specifies that the data is not valid.

The properties of the event object have the following values:

PropertyValue
bubbles true
cancelable false; there is no default behavior to cancel.
currentTargetThe object that is actively processing the Event object with an event listener.
target The object that dispatched the event; use the currentTarget property to always access the Object listening for the event.

FORM_DATA_VALID

Constante 
public static const FORM_DATA_VALID:String = "formDataValid"

Versão da linguagem: ActionScript 3.0
Versão de produto: Adobe Digital Enterprise Platform Document Services - Workspace 9
Versões de runtime: AIR (unsupported), Flash Player 9, Flash Player 10

A special value that specifies that the data is valid.

The properties of the event object have the following values:

PropertyValue
bubbles true
cancelable false; there is no default behavior to cancel.
currentTargetThe object that is actively processing the Event object with an event listener.
target The object that dispatched the event; use the currentTarget property to always access the Object listening for the event.

FORM_DIRTY

Constante 
public static const FORM_DIRTY:String = "formDirty"

Versão da linguagem: ActionScript 3.0
Versão de produto: Adobe Digital Enterprise Platform Document Services - Workspace 9
Versões de runtime: AIR (unsupported), Flash Player 9, Flash Player 10

A special value that specifies that changes have occurred to the data. Flex application becomes "dirty" when the user has made changes to the data since the Flex application was initialized or the last time form data was sent.

The properties of the event object have the following values:

PropertyValue
bubbles true
cancelable false; there is no default behavior to cancel.
currentTargetThe object that is actively processing the Event object with an event listener.
target The object that dispatched the event; use the currentTarget property to always access the Object listening for the event.

FORM_INITIAL_DATA

Constante 
public static const FORM_INITIAL_DATA:String = "formInitialData"

Versão da linguagem: ActionScript 3.0
Versão de produto: Adobe Digital Enterprise Platform Document Services - Workspace 9
Versões de runtime: AIR (unsupported), Flash Player 9, Flash Player 10

A special value that specifies that initial data is sent to the Flex application.

The properties of the event object have the following values:

PropertyValue
bubbles true
cancelable false; there is no default behavior to cancel.
currentTargetThe object that is actively processing the Event object with an event listener.
target The object that dispatched the event; use the currentTarget property to always access the Object listening for the event.

FORM_READY

Constante 
public static const FORM_READY:String = "formReady"

Versão da linguagem: ActionScript 3.0
Versão de produto: Adobe Digital Enterprise Platform Document Services - Workspace 9
Versões de runtime: AIR (unsupported), Flash Player 9, Flash Player 10

A special value that specifies that the Flex application is ready to communicate with Workspace.

The properties of the event object have the following values:

PropertyValue
bubbles true
cancelable false; there is no default behavior to cancel.
currentTargetThe object that is actively processing the Event object with an event listener.
target The object that dispatched the event; use the currentTarget property to always access the Object listening for the event.

FORM_SAVE_DATA

Constante 
public static const FORM_SAVE_DATA:String = "formSaveData"

Versão da linguagem: ActionScript 3.0
Versão de produto: Adobe Digital Enterprise Platform Document Services - Workspace 9
Versões de runtime: AIR (unsupported), Flash Player 9, Flash Player 10

A special value that specifies that the data was saved by Workspace.

The properties of the event object have the following values:

PropertyValue
bubbles true
cancelable false; there is no default behavior to cancel.
currentTargetThe object that is actively processing the Event object with an event listener.
target The object that dispatched the event; use the currentTarget property to always access the Object listening for the event.

FORM_SAVE_DATA_REQUEST

Constante 
public static const FORM_SAVE_DATA_REQUEST:String = "formSaveDataRequest"

Versão da linguagem: ActionScript 3.0
Versão de produto: Adobe Digital Enterprise Platform Document Services - Workspace 9
Versões de runtime: AIR (unsupported), Flash Player 9, Flash Player 10

A special value that specifies that the Save Form button was clicked within Workspace.

The properties of the event object have the following values:

PropertyValue
bubbles true
cancelable false; there is no default behavior to cancel.
currentTargetThe object that is actively processing the Event object with an event listener.
target The object that dispatched the event; use the currentTarget property to always access the Object listening for the event.

FORM_SUBMIT_DATA

Constante 
public static const FORM_SUBMIT_DATA:String = "formSubmitData"

Versão da linguagem: ActionScript 3.0
Versão de produto: Adobe Digital Enterprise Platform Document Services - Workspace 9
Versões de runtime: AIR (unsupported), Flash Player 9, Flash Player 10

A special value that specifies that the data was successfully submitted by Workspace to the server.

The properties of the event object have the following values:

PropertyValue
bubbles true
cancelable false; there is no default behavior to cancel.
currentTargetThe object that is actively processing the Event object with an event listener.
target The object that dispatched the event; use the currentTarget property to always access the Object listening for the event.

FORM_SUBMIT_DATA_INVALID

Constante 
public static const FORM_SUBMIT_DATA_INVALID:String = "formSubmitDataInvalid"

Versão da linguagem: ActionScript 3.0
Versão de produto: Adobe Digital Enterprise Platform Document Services - Workspace 9
Versões de runtime: AIR (unsupported), Flash Player 9, Flash Player 10

A special value that specifies that invalid data that was submitted.

The properties of the event object have the following values:

PropertyValue
bubbles true
cancelable false; there is no default behavior to cancel.
currentTargetThe object that is actively processing the Event object with an event listener.
target The object that dispatched the event; use the currentTarget property to always access the Object listening for the event.

FORM_SUBMIT_DATA_REQUEST

Constante 
public static const FORM_SUBMIT_DATA_REQUEST:String = "formSubmitDataRequest"

Versão da linguagem: ActionScript 3.0
Versão de produto: Adobe Digital Enterprise Platform Document Services - Workspace 9
Versões de runtime: AIR (unsupported), Flash Player 9, Flash Player 10

A special value that specifies that the Complete button was clicked within Workspace.

The properties of the event object have the following values:

PropertyValue
bubbles true
cancelable false; there is no default behavior to cancel.
currentTargetThe object that is actively processing the Event object with an event listener.
target The object that dispatched the event; use the currentTarget property to always access the Object listening for the event.





[ X ]Por que inglês?
O conteúdo na Referência do ActionScript 3.0 aparece em inglês

Nem todas as partes da Referência do ActionScript 3.0 estão traduzidas em todos os idiomas. Quando um elemento de um idioma não está traduzido, ele é exibido em inglês. Por exemplo, a classe ga.controls.HelpBox não está traduzida em nenhum idioma. Por isso, na versão da referência em português do Brasil, a classe ga.controls.HelpBox é exibida em inglês.