diff options
author | Adam Young <ayoung@redhat.com> | 2010-10-13 13:07:43 -0400 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2010-10-15 12:51:30 -0400 |
commit | acf5f9cad7438268148dff6c6b74d8c63048409a (patch) | |
tree | 04b5c2bd2529c68f7ec3cb59bb7f2f0cf19417be /install/static/netgroup.js | |
parent | 538646c04ccbbef8249da3705eb455e63d075589 (diff) | |
download | freeipa.git-acf5f9cad7438268148dff6c6b74d8c63048409a.tar.gz freeipa.git-acf5f9cad7438268148dff6c6b74d8c63048409a.tar.xz freeipa.git-acf5f9cad7438268148dff6c6b74d8c63048409a.zip |
multivalue fixes
metadata for phone numbers
test date for users
Undo works for multivalue
JQuery UI buttons have custom classes
inputs/fields are now managed inside of objects
removed the use of .call. as it was confusing the issue of
mismatched parameter lists.
Fixed the parameter lists, too.
Diffstat (limited to 'install/static/netgroup.js')
-rw-r--r-- | install/static/netgroup.js | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/install/static/netgroup.js b/install/static/netgroup.js index 7e8868fe..9a738877 100644 --- a/install/static/netgroup.js +++ b/install/static/netgroup.js @@ -34,10 +34,9 @@ ipa_entity_set_add_definition('netgroup', [ ]); ipa_entity_set_details_definition('netgroup', [ - {name:'identity', label:'Netgroup Details', fields:[ - {name:'cn', label:'Name'}, - {name:'description', label:'Description'}, - {name:'nisdomainname', label:'NIS Domain'} - ]} + ipa_stanza({name:'identity', label:'Netgroup Details'}). + input({name:'cn', label:'Name'}). + input({name:'description', label:'Description'}). + input({name:'nisdomainname', label:'NIS Domain'}) ]); |