summaryrefslogtreecommitdiffstats
path: root/install/ui/group.js
diff options
context:
space:
mode:
Diffstat (limited to 'install/ui/group.js')
-rw-r--r--install/ui/group.js34
1 files changed, 26 insertions, 8 deletions
diff --git a/install/ui/group.js b/install/ui/group.js
index ad705eb2..b9664ea6 100644
--- a/install/ui/group.js
+++ b/install/ui/group.js
@@ -29,13 +29,27 @@ IPA.entity_factories.group = function () {
return IPA.entity_builder().
entity('group').
search_facet({
- columns:['cn','gidnumber','description']
+ columns: [
+ 'cn',
+ 'gidnumber',
+ 'description'
+ ]
+ }).
+ details_facet({
+ sections: [
+ {
+ name: 'details',
+ fields: [
+ 'cn',
+ {
+ factory: IPA.textarea_widget,
+ name: 'description'
+ },
+ 'gidnumber'
+ ]
+ }
+ ]
}).
- details_facet({sections:
- [{
- name:'details',
- fields:['cn','description','gidnumber']
- }]}).
association_facet({
name: 'member_user',
columns:[
@@ -90,14 +104,18 @@ IPA.entity_factories.group = function () {
adder_dialog({
fields: [
'cn',
- 'description',
+ {
+ factory: IPA.textarea_widget,
+ name: 'description'
+ },
{
factory: IPA.group_nonposix_checkbox_widget,
name: 'nonposix',
label: IPA.messages.objects.group.posix,
checked: true
},
- 'gidnumber']
+ 'gidnumber'
+ ]
}).
build();
};