diff options
-rw-r--r-- | install/ui/src/freeipa/association.js | 1 | ||||
-rwxr-xr-x | install/ui/src/freeipa/certificate.js | 1 | ||||
-rw-r--r-- | install/ui/src/freeipa/entitle.js | 1 | ||||
-rw-r--r-- | install/ui/src/freeipa/host.js | 2 | ||||
-rw-r--r-- | install/ui/src/freeipa/service.js | 1 | ||||
-rw-r--r-- | install/ui/src/freeipa/user.js | 1 | ||||
-rw-r--r-- | install/ui/src/freeipa/widget.js | 17 |
7 files changed, 23 insertions, 1 deletions
diff --git a/install/ui/src/freeipa/association.js b/install/ui/src/freeipa/association.js index d3a2d3220..a689de43c 100644 --- a/install/ui/src/freeipa/association.js +++ b/install/ui/src/freeipa/association.js @@ -555,6 +555,7 @@ IPA.association_table_widget = function (spec) { that.add_record(that.values[i]); } } + that.updated.notify([], that); }; that.create_add_dialog = function() { diff --git a/install/ui/src/freeipa/certificate.js b/install/ui/src/freeipa/certificate.js index 19f54e95a..f3e89e54d 100755 --- a/install/ui/src/freeipa/certificate.js +++ b/install/ui/src/freeipa/certificate.js @@ -892,6 +892,7 @@ IPA.cert.status_widget = function(spec) { status = IPA.cert.CERTIFICATE_STATUS_REVOKED; } that.set_status(status, certificate.revocation_reason); + that.updated.notify([], that); }; that.clear = function() { diff --git a/install/ui/src/freeipa/entitle.js b/install/ui/src/freeipa/entitle.js index 77dd0836d..1a60d6500 100644 --- a/install/ui/src/freeipa/entitle.js +++ b/install/ui/src/freeipa/entitle.js @@ -753,6 +753,7 @@ IPA.entitle.download_widget = function(spec) { } else { that.link.css('display', 'none'); } + that.updated.notify([], that); }; return that; diff --git a/install/ui/src/freeipa/host.js b/install/ui/src/freeipa/host.js index 4dd58f88d..ac585d7f2 100644 --- a/install/ui/src/freeipa/host.js +++ b/install/ui/src/freeipa/host.js @@ -603,6 +603,7 @@ IPA.host_keytab_widget = function(spec) { that.update = function(values) { set_status(values[0] ? 'present' : 'missing'); + that.updated.notify([], that); }; that.clear = function() { @@ -764,6 +765,7 @@ IPA.host_password_widget = function(spec) { that.update = function(values) { set_status(values[0] ? 'present' : 'missing'); + that.updated.notify([], that); }; that.clear = function() { diff --git a/install/ui/src/freeipa/service.js b/install/ui/src/freeipa/service.js index 318670733..4d135ea23 100644 --- a/install/ui/src/freeipa/service.js +++ b/install/ui/src/freeipa/service.js @@ -358,6 +358,7 @@ IPA.service_provisioning_status_widget = function (spec) { that.update = function(values) { that.status = values && values.length ? values[0] : false; set_status(that.status ? 'valid' : 'missing'); + that.updated.notify([], that); }; that.clear = function() { diff --git a/install/ui/src/freeipa/user.js b/install/ui/src/freeipa/user.js index 2fa0b0641..91be2d0e6 100644 --- a/install/ui/src/freeipa/user.js +++ b/install/ui/src/freeipa/user.js @@ -476,6 +476,7 @@ IPA.user_password_widget = function(spec) { } else { that.display_control.text(that.unset_value); } + that.updated.notify([], that); }; that.clear = function() { diff --git a/install/ui/src/freeipa/widget.js b/install/ui/src/freeipa/widget.js index 6cfa53d1c..2d5d4ace9 100644 --- a/install/ui/src/freeipa/widget.js +++ b/install/ui/src/freeipa/widget.js @@ -103,6 +103,7 @@ IPA.input_widget = function(spec) { //each widget can contain several events that.value_changed = IPA.observer(); that.undo_clicked = IPA.observer(); + that.updated = IPA.observer(); that.create_error_link = function(container) { @@ -288,6 +289,8 @@ IPA.text_widget = function(spec) { that.display_control.css('display', 'none'); that.input.css('display', 'inline'); } + + that.updated.notify([], that); }; that.save = function() { @@ -616,6 +619,8 @@ IPA.multivalued_widget = function(spec) { var row = that.rows[index]; row.widget.update(values); } + + that.updated.notify([], that); }; return that; @@ -654,7 +659,8 @@ IPA.option_widget_base = function(spec, that) { that.name = spec.name; that.label = spec.label; that.tooltip = spec.tooltip; - that.value_changed = IPA.observer(); + that.value_changed = that.value_changed || IPA.observer(); + that.updated = that.updated || IPA.observer(); that.default_value = spec.default_value || null; /** @@ -979,6 +985,8 @@ IPA.option_widget_base = function(spec, that) { that._child_widgets[j].update(values); } } + + that.updated.notify([], that); }; that.set_enabled = function(enabled) { @@ -1141,6 +1149,7 @@ IPA.select_widget = function(spec) { var option = $('option[value="'+value+'"]', that.select); if (!option.length) return; option.prop('selected', true); + that.updated.notify([], that); }; that.empty = function() { @@ -1236,6 +1245,7 @@ IPA.textarea_widget = function (spec) { var value = values && values.length ? values[0] : ''; that.input.val(value); + that.updated.notify([], that); }; that.clear = function() { @@ -1810,6 +1820,7 @@ IPA.table_widget = function (spec) { that.values.push(record[that.value_attr_name]); that.add_record(record); } + that.updated.notify([], that); }; that.save = function() { @@ -2660,6 +2671,7 @@ IPA.combobox_widget = function(spec) { that.select(value); } ); + that.updated.notify([], that); }; that.set_value = function(value) { @@ -2828,6 +2840,7 @@ IPA.link_widget = function(spec) { that.link.css('display','none'); that.nonlink.css('display','none'); } + that.updated.notify([], that); }; that.clear = function() { @@ -3628,6 +3641,7 @@ IPA.sshkey_widget = function(spec) { that.original_key = that.key.key; } that.update_link(); + that.updated.notify([], that); }; that.set_deleted = function(deleted) { @@ -3908,6 +3922,7 @@ IPA.value_map_widget = function(spec) { } that.display_control.text(label); + that.updated.notify([], that); }; that.clear = function() { |