diff options
author | Endi Sukma Dewata <edewata@redhat.com> | 2012-01-18 17:58:55 -0600 |
---|---|---|
committer | Petr VobornÃk <pvoborni@redhat.com> | 2012-01-23 15:38:35 +0100 |
commit | fef343ae8f501aa67d4c746d9c7103d797fd6be2 (patch) | |
tree | f4cd5bad86ac0309dbcf3148dcdc10a8a62a0b17 /install/ui/hbac.js | |
parent | 7c0c39581c567c2c5bd92f9396b6fd99a2b8a6f8 (diff) | |
download | freeipa.git-fef343ae8f501aa67d4c746d9c7103d797fd6be2.tar.gz freeipa.git-fef343ae8f501aa67d4c746d9c7103d797fd6be2.tar.xz freeipa.git-fef343ae8f501aa67d4c746d9c7103d797fd6be2.zip |
Show disabled entries in gray.
The users, HBAC/sudo rules, HBAC test, and SELinux list pages have
been modified to show disabled entries in gray. Icons will be added
separately.
Ticket #1996
Diffstat (limited to 'install/ui/hbac.js')
-rw-r--r-- | install/ui/hbac.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/install/ui/hbac.js b/install/ui/hbac.js index 34c9b285..5d6de15d 100644 --- a/install/ui/hbac.js +++ b/install/ui/hbac.js @@ -37,12 +37,15 @@ IPA.hbac.rule_entity = function(spec) { that.entity_init(); that.builder.search_facet({ + row_enabled_attribute: 'ipaenabledflag', search_all_attributes: true, columns: [ 'cn', { name: 'ipaenabledflag', - format: IPA.boolean_format() + format: IPA.boolean_format({ + show_false: true + }) }, 'description' ] |