diff options
Diffstat (limited to 'install/ui/group.js')
-rw-r--r-- | install/ui/group.js | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/install/ui/group.js b/install/ui/group.js index fb07a8cb3..e4a037a50 100644 --- a/install/ui/group.js +++ b/install/ui/group.js @@ -29,18 +29,7 @@ IPA.entity_factories.group = function () { return IPA.entity_builder(). entity('group'). search_facet({ - columns:['cn','gidnumber','description'], - add_fields: [ - 'cn', - 'description', - { - factory:IPA.checkbox_widget, - name: 'posix', - label: IPA.messages.objects.group.posix, - undo: false, - checked: 'checked' - }, - 'gidnumber'] + columns:['cn','gidnumber','description'] }). details_facet({sections: [{ @@ -86,5 +75,18 @@ IPA.entity_factories.group = function () { associator: IPA.serial_associator }). standard_association_facets(). + adder_dialog({ + fields: [ + 'cn', + 'description', + { + factory:IPA.checkbox_widget, + name: 'posix', + label: IPA.messages.objects.group.posix, + undo: false, + checked: 'checked' + }, + 'gidnumber'] + }). build(); }; |