summaryrefslogtreecommitdiffstats
path: root/install/ui/widget.js
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2011-10-04 18:38:08 +0200
committerMartin Kosek <mkosek@redhat.com>2011-10-06 13:15:01 +0200
commit6f38cc42e73704f15c110c8bfbdffba8ea6f455a (patch)
treeda8cf6c36714cf99e46f58de78f9f899c4581237 /install/ui/widget.js
parent526a39903a9d9136b7a2cef25cde59074ba1f39c (diff)
downloadfreeipa-6f38cc42e73704f15c110c8bfbdffba8ea6f455a.tar.gz
freeipa-6f38cc42e73704f15c110c8bfbdffba8ea6f455a.tar.xz
freeipa-6f38cc42e73704f15c110c8bfbdffba8ea6f455a.zip
Disables gid field if not posix group in group adder dialog
https://fedorahosted.org/freeipa/ticket/1922 gidNumber is not an allowed attribute for a non-posix group. When adding a non-posix group from the UI, unchecking the "Is this a POSIX group?:" box should disable the "GID:" field.
Diffstat (limited to 'install/ui/widget.js')
-rw-r--r--install/ui/widget.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/install/ui/widget.js b/install/ui/widget.js
index f46d79e72..b86f6e04c 100644
--- a/install/ui/widget.js
+++ b/install/ui/widget.js
@@ -468,6 +468,15 @@ IPA.text_widget = function(spec) {
}
};
+ that.set_enabled = function(value) {
+
+ if(value) {
+ that.input.removeAttr('disabled');
+ } else {
+ that.input.attr('disabled', 'disabled');
+ }
+ };
+
// methods that should be invoked by subclasses
that.text_load = that.load;
@@ -771,6 +780,7 @@ IPA.checkbox_widget = function (spec) {
// default value
that.checked = spec.checked || false;
+ that.value_changed = IPA.observer();
that.create = function(container) {
@@ -785,6 +795,7 @@ IPA.checkbox_widget = function (spec) {
title: that.tooltip,
change: function() {
that.set_dirty(that.test_dirty());
+ that.value_changed.notify(that.save(), that);
}
}).appendTo(container);