| Package | com.yworks.remote |
| Interface | public interface ServerAction |
| Implementors | DefaultServerAction |
| Property | Defined by | ||
|---|---|---|---|
| url : String
The location of the server action.
| ServerAction | ||
| Method | Defined 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 | ||
| url | property |
url:String [read-write]The location of the server action.
Implementation public function get url():String
public function set url(value:String):void
| 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:Object — The parameters to send.
|