From 571274e978434a7b5e17100076172233e7320855 Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Fri, 15 Jul 2011 12:18:59 -0500 Subject: Entity select widget improvements The IPA.entity_select_widget has been modified into a searchable and editable drop down list. The base functionality has been extracted into IPA.combobox_widget. Ticket #1361 --- install/ui/entitle.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'install/ui/entitle.js') diff --git a/install/ui/entitle.js b/install/ui/entitle.js index 4775af4bf..b3b09e562 100644 --- a/install/ui/entitle.js +++ b/install/ui/entitle.js @@ -337,7 +337,7 @@ IPA.entitle.details_facet = function(spec) { that.register_online_button = IPA.action_button({ name: 'register', label: IPA.messages.objects.entitle.register, - icon: 'ui-icon-plus', + icon: 'add-icon', click: function() { var dialog = that.entity.get_dialog('online_registration'); dialog.open(that.container); @@ -350,7 +350,7 @@ IPA.entitle.details_facet = function(spec) { that.register_offline_button = IPA.action_button({ name: 'import', label: IPA.messages.objects.entitle.import, - icon: 'ui-icon-plus', + icon: 'add-icon', click: function() { var dialog = that.entity.get_dialog('offline_registration'); dialog.open(that.container); @@ -426,7 +426,7 @@ IPA.entitle.search_facet = function(spec) { that.consume_button = IPA.action_button({ name: 'consume', label: IPA.messages.objects.entitle.consume, - icon: 'ui-icon-plus', + icon: 'add-icon', click: function() { var dialog = that.entity.get_dialog('consume'); dialog.open(that.container); @@ -439,7 +439,7 @@ IPA.entitle.search_facet = function(spec) { that.import_button = IPA.action_button({ name: 'import', label: IPA.messages.objects.entitle.import_button, - icon: 'ui-icon-plus', + icon: 'add-icon', click: function() { var dialog = that.entity.get_dialog('import'); dialog.open(that.container); -- cgit