Packagecom.vmware.core.events
Classpublic class DataRefreshInvocationEvent
InheritanceDataRefreshInvocationEvent Inheritance flash.events.Event

This event can be used to notify a user-initiated refresh in the UI.

A component can handle this event to refresh itself.

View the examples



Public Methods
 MethodDefined By
  
Constructs a new instance.
DataRefreshInvocationEvent
Public Constants
 ConstantDefined By
  EVENT_ID : String = dataRefreshInvocationEvent
[static]
DataRefreshInvocationEvent
Constructor Detail
DataRefreshInvocationEvent()Constructor
public function DataRefreshInvocationEvent(type:String)

Constructs a new instance.

Parameters
type:String (default = NaN)
Constant Detail
EVENT_IDConstant
public static const EVENT_ID:String = dataRefreshInvocationEvent

Examples
The following example shows how to use this request:
 public class SomeDataViewMediator {
    [EventHandler("{com.vmware.core.events.DataRefreshInvocationEvent.EVENT_ID}")]
    public function onDataRefreshInvocationEvent(event:DataRefreshInvocationEvent):void {
       // Refresh logic.
    }
 }