diff options
author | Endi S. Dewata <edewata@redhat.com> | 2011-04-18 10:59:50 -0500 |
---|---|---|
committer | Endi Sukma Dewata <edewata@people01.fedoraproject.org> | 2011-04-21 19:43:54 +0000 |
commit | 3528b4eca3cf2519a6af5a43f6b321cbd8eea138 (patch) | |
tree | 8e0ae420440e45429057dd4747a5aaa80eb0d47a /install/ui/netgroup.js | |
parent | bc6f9accd9250114b4f0c457fa5badd7f794af8e (diff) | |
download | freeipa-3528b4eca3cf2519a6af5a43f6b321cbd8eea138.tar.gz freeipa-3528b4eca3cf2519a6af5a43f6b321cbd8eea138.tar.xz freeipa-3528b4eca3cf2519a6af5a43f6b321cbd8eea138.zip |
Moved adder dialog box into entity.
The adder dialog box definition has been moved from search facet
into entity to make it accessible from other facets.
Diffstat (limited to 'install/ui/netgroup.js')
-rw-r--r-- | install/ui/netgroup.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/install/ui/netgroup.js b/install/ui/netgroup.js index aa6141911..197925a8d 100644 --- a/install/ui/netgroup.js +++ b/install/ui/netgroup.js @@ -26,8 +26,7 @@ IPA.entity_factories.netgroup = function() { return IPA.entity_builder(). entity('netgroup'). search_facet({ - columns:['cn','description'], - add_fields:['cn', 'description']}). + columns:['cn','description']}). details_facet({sections:[{ name:'identity', fields:['cn','description','nisdomainname']}]}). @@ -36,5 +35,8 @@ IPA.entity_factories.netgroup = function() { associator: IPA.serial_associator }). standard_association_facets(). + adder_dialog({ + fields:['cn', 'description'] + }). build(); }; |