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;