Packagecom.yworks.remote
Interfacepublic interface ServerAction
Implementors DefaultServerAction

Implementations of this interface perform tasks that require communication with the server component.



Public Properties
 PropertyDefined By
  url : String
The location of the server action.
ServerAction
Public Methods
 MethodDefined By
  
sendAction():void
invokes the server action at the url using the current parameters.
ServerAction
  
setParameters(parameters:Object):void
Set the parameters that will be sent to the url upon the next call to sendAction.
ServerAction
Property Detail
urlproperty
url:String

The location of the server action.


Implementation
    public function get url():String
    public function set url(value:String):void
Method Detail
sendAction()method
public function sendAction():void

invokes the server action at the url using the current parameters.

setParameters()method 
public function setParameters(parameters:Object):void

Set the parameters that will be sent to the url upon the next call to sendAction. After the parameters have been submitted, the parameters are cleared.

Parameters

parameters:Object — The parameters to send.