summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2010-11-18 23:53:14 -0600
committerAdam Young <ayoung@redhat.com>2010-11-19 13:26:41 -0500
commit5c4dc1c2e95749559dac9c625859f4e1ced5a6e1 (patch)
tree3f8bf505831d0d0df451035acab3a44da29ac86c
parent3e1dc6b74f999052d7023bf0804707f13b3004bd (diff)
downloadfreeipa-5c4dc1c2e95749559dac9c625859f4e1ced5a6e1.tar.gz
freeipa-5c4dc1c2e95749559dac9c625859f4e1ced5a6e1.tar.xz
freeipa-5c4dc1c2e95749559dac9c625859f4e1ced5a6e1.zip
Use radio buttons for HBAC rule type
To be consistent with the details page, the rule type in the HBAC add dialog box has been converted into radio buttons.
-rwxr-xr-xinstall/static/hbac.js8
-rwxr-xr-xinstall/static/widget.js30
2 files changed, 35 insertions, 3 deletions
diff --git a/install/static/hbac.js b/install/static/hbac.js
index f63a489e0..894b2f4a0 100755
--- a/install/static/hbac.js
+++ b/install/static/hbac.js
@@ -71,9 +71,13 @@ function ipa_hbac_add_dialog(spec) {
'undo': false
}));
- that.add_field(ipa_text_widget({
+ that.add_field(ipa_radio_widget({
'name': 'accessruletype',
- 'label': 'Rule type (allow/deny)',
+ 'label': 'Rule type',
+ 'options': [
+ { 'value': 'allow', 'label': 'Allow' },
+ { 'value': 'deny', 'label': 'Deny' }
+ ],
'undo': false
}));
};
diff --git a/install/static/widget.js b/install/static/widget.js
index f6bc3d837..060f258eb 100755
--- a/install/static/widget.js
+++ b/install/static/widget.js
@@ -265,6 +265,31 @@ function ipa_radio_widget(spec) {
var that = ipa_widget(spec);
+ that.options = spec.options;
+
+ that.create = function(container) {
+
+ for (var i=0; i<that.options.length; i++) {
+ var option = that.options[i];
+
+ $('<input/>', {
+ 'type': 'radio',
+ 'name': that.name,
+ 'value': option.value
+ }).appendTo(container);
+
+ container.append(option.label);
+ }
+
+ if (that.undo) {
+ $('<span/>', {
+ 'name': 'undo',
+ 'style': 'display: none;',
+ 'html': 'undo'
+ }).appendTo(container);
+ }
+ };
+
that.setup = function(container) {
that.widget_setup(container);
@@ -295,7 +320,10 @@ function ipa_radio_widget(spec) {
};
that.clear = function() {
- $('input[name="'+that.name+'"]', that.container).get().checked = false;
+ $('input[name="'+that.name+'"]', that.container).each(function() {
+ var input = this;
+ input.checked = false;
+ });
};
return that;