summaryrefslogtreecommitdiffstats
path: root/install/ui/association.js
diff options
context:
space:
mode:
Diffstat (limited to 'install/ui/association.js')
-rw-r--r--install/ui/association.js36
1 files changed, 19 insertions, 17 deletions
diff --git a/install/ui/association.js b/install/ui/association.js
index b79a18f06..1c9776b0e 100644
--- a/install/ui/association.js
+++ b/install/ui/association.js
@@ -64,28 +64,30 @@ IPA.serial_associator = function(spec) {
return;
}
- var value = that.values.shift();
- if (!value) {
- that.on_success();
- return;
- }
-
- var args = [value];
- var options = {};
- options[that.entity.name] = that.pkey;
-
- var command = IPA.command({
- entity: that.other_entity,
- method: that.method,
- args: args,
- options: options,
- on_success: that.execute,
+ var batch = IPA.batch_command({
+ on_success: that.on_success,
on_error: that.on_error
});
+ var args, options, command;
+
+ for(var i=0; i < that.values.length; i++) {
+ args = [that.values[i]];
+ options = {};
+ options[that.entity.name] = that.pkey;
+
+ command = IPA.command({
+ entity: that.other_entity,
+ method: that.method,
+ args: args,
+ options: options
+ });
+
+ batch.add_command(command);
+ }
//alert(JSON.stringify(command.to_json()));
- command.execute();
+ batch.execute();
};
return that;