From d5ae74e613ad61ea7898ce45f300c86bc38fcc86 Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Apr 10 2012 11:24:37 +0000 Subject: Fixed: permission attrs table didn't update its available options on load It could lead to state where attributes from other object type were displayed instead of the correct ones. https://fedorahosted.org/freeipa/ticket/2590 --- diff --git a/install/ui/aci.js b/install/ui/aci.js index ba4a22b..d65d3f8 100644 --- a/install/ui/aci.js +++ b/install/ui/aci.js @@ -759,6 +759,13 @@ IPA.permission_target_policy = function (widget_name) { attribute_field.reset(); }; + that.update_attrs = function() { + + var type_select = that.permission_target.widgets.get_widget('type'); + var type = type_select.save()[0]; + that.set_attrs_type(type); + }; + that.post_create = function() { that.select_target(that.permission_target.targets[0]); }; @@ -853,7 +860,10 @@ IPA.permission_target_policy = function (widget_name) { { name: 'attrs' } - ] + ], + action: function() { + that.update_attrs(); + } } };