Cet exemple vous montre comment calculer les sommes des champs situés à différents niveaux de la hiérarchie lorsque l’utilisateur ouvre un formulaire dans une application client, telle que Acrobat Professional, Adobe Reader ou une application client HTML.
Livecycle eg calc sum Calcul des sommes dun champ
var fields = xfa.resolveNodes(“NumericField1[*]“);
var total = 0;
for (var i=0; i <= fields.length-1; i++) {
total = total + fields.item(i).rawValue;
}
this.rawValue = total;
var fields = xfa.resolveNodes(“detail[*].NumericField1″);
var total = 0;
for (var i=0; i <= fields.length-1; i++) {
total = total + fields.item(i).rawValue;
}
this.rawValue = total;
var fields = xfa.layout.pageContent(0 , “field”, 0);
var total = 0;
for (var i=0; i <= fields.length-1; i++) {
if (fields.item(i).name ==”NumericField1″) {
total = total + fields.item(i).rawValue;
}
}
this.rawValue = total;
Voir aussi 

Calcul des sommes d’un champ