From 95ea68a2175cc1bec0dbb901311e40f55b692c42 Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Mon, 6 Dec 2010 13:51:49 -0600 Subject: Column i18n The ipa_column has been modified to get the label from metadata during initialization. The ipa_table_widget has been modified to initialize the columns. Hard-coded labels have been removed from column declarations. The ipa_adder_dialog has been modified to execute a search at the end of setup. --- install/static/hbacsvc.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'install/static/hbacsvc.js') diff --git a/install/static/hbacsvc.js b/install/static/hbacsvc.js index a0ef75d1..bf3c2ad7 100755 --- a/install/static/hbacsvc.js +++ b/install/static/hbacsvc.js @@ -82,8 +82,8 @@ function ipa_hbacsvc_search_facet(spec) { that.init = function() { - that.create_column({name:'cn', label:'Service', primary_key: true}); - that.create_column({name:'description', label:'Description'}); + that.create_column({name:'cn', primary_key: true}); + that.create_column({name:'description'}); that.search_facet_init(); }; @@ -140,8 +140,8 @@ function ipa_hbacsvc_details_facet(spec) { }); that.add_section(section); - section.create_field({ 'name': 'cn', 'label': 'Name' }); - section.create_field({ 'name': 'description', 'label': 'Description' }); + section.create_field({'name': 'cn'}); + section.create_field({'name': 'description'}); that.superior_init(); }; -- cgit