javascript-sample
Reactive icon

Javascript Examples

Stable version 1.0.2 (Compatible with OutSystems 11)
Uploaded
 on 14 September 2023
 by 
5.0
 (2 ratings)
javascript-sample

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;