Operation

Last modified by Maurice Gasco on 2011/09/28 12:16

Cet objet représente la définition d'une opération d'une application.

Propriétés

Id

sysId de l'opération.

Name

Nom de l'opération.

Exemple: création d'une option contenant la liste des actions
      var arr = new Array();
      var reg = System.Registry;
      var app = reg.getApplication(appname);
      if (app != null) {
        var opers = app.getOperations();
        var max = opers.length;
        for (var i=0; i<max; i++) {
          var oper = opers[i];
          var opt = new sysOptionValue();
          opt.sysTitle = oper.Name
          opt.sysValue = oper.Name;
          arr.push(opt);
        }
      }

Tags:
Created by Maurice Gasco on 2011/09/28 12:15
     
This wiki is licensed under a Creative Commons 2.0 license
XWiki Enterprise 9.11.5 - Documentation