javascript-examples
Reactive icon

Javascript Examples

Stable version 1.0.3 (Compatible with OutSystems 11)
Uploaded
 on 27 May (15 hours ago)
 by 
5.0
 (2 ratings)
javascript-examples

Javascript Examples

Documentation
1.0.1

how to call Client Action using Javascript and how to pass input argument and get the Output Parameters.

Assume AsyncCallUsingJavascript is a client Action having two Input and two Output parameters below is the javascript code to call the action- 

var Result=$actions.AsyncCallUsingJavascript($parameters.Name,$parameters.Place);

$parameters.OutName = Result.OutName;

$parameters.Total = Result.Total;