Action
This object represents the definition of an application's action.
Properties
Id
sysId of the action.
Name
Name of the action.
Title
Title of the action.
Example: Create an option listing all actions of an application
var arr = new Array();
var reg = System.Registry;
var app = reg.getApplication("rqRequest");
if (app != null) {
var acts = app.getActions();
var max = acts.length;
for (var i=0; i<max; i++) {
var act = acts[i];
var opt = new sysOptionValue();
opt.sysTitle = act.Title;
opt.sysValue = act.Name;
arr.push(opt);
}
}