From acf5f9cad7438268148dff6c6b74d8c63048409a Mon Sep 17 00:00:00 2001 From: Adam Young Date: Wed, 13 Oct 2010 13:07:43 -0400 Subject: 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. --- install/static/netgroup.js | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'install/static/netgroup.js') 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'}) ]); -- cgit