Packagecom.yworks.remote
Interfacepublic interface ServerAction
ImplementorsDefaultServerAction

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  [read-write]

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.