Questa è una vecchia versione del documento!
executeGwAction()
This will cause the execution of the gwAction, with name gwActionName, existing under the gwClass with name gwClassName the gwAction will be invoked with the declared set of parameters, availables under the specified variables names
Parametri
- gwActionName String, required
- gwClassName String, required
- functionParametersNames String[], optional default []
- functionParameters Object[], optional default []
Esempi
- example.js
var gwActionName = 'gwActionName'; var gwClassName = 'gwClassName'; var functionParametersNames = ['param1', 'param2']; var functionParameters = ['abc', 123]; executeGwAction(gwActionName, gwClassName, functionParametersNames, functionParameters);