diff options
author | Endi S. Dewata <edewata@redhat.com> | 2011-08-30 12:33:03 -0500 |
---|---|---|
committer | Endi S. Dewata <edewata@redhat.com> | 2011-08-31 16:29:55 +0000 |
commit | ebb0b386a36948b0f78f237995190ceb64c73325 (patch) | |
tree | 65dd6d02855fdcdce75edcaa9a3c5c7bbe009090 /install | |
parent | b7121a8cbd6b7814f0a5666d27de7b209d095451 (diff) | |
download | freeipa-ebb0b386a36948b0f78f237995190ceb64c73325.tar.gz freeipa-ebb0b386a36948b0f78f237995190ceb64c73325.tar.xz freeipa-ebb0b386a36948b0f78f237995190ceb64c73325.zip |
Fixed problem with combobox.
The entity select widget has been modified to handle timing issue
in both dialog box and details page.
Ticket #1736
Diffstat (limited to 'install')
-rw-r--r-- | install/ui/dialog.js | 1 | ||||
-rw-r--r-- | install/ui/host.js | 4 | ||||
-rw-r--r-- | install/ui/widget.js | 98 |
3 files changed, 73 insertions, 30 deletions
diff --git a/install/ui/dialog.js b/install/ui/dialog.js index 0d4ac2da3..05d0eb4b5 100644 --- a/install/ui/dialog.js +++ b/install/ui/dialog.js @@ -201,6 +201,7 @@ IPA.dialog = function(spec) { } that.create(); + that.reset(); that.container.dialog({ title: that.title, diff --git a/install/ui/host.js b/install/ui/host.js index 019d3f40d..bcff252dd 100644 --- a/install/ui/host.js +++ b/install/ui/host.js @@ -359,11 +359,11 @@ IPA.dnszone_select_widget = function(spec) { var that = IPA.entity_select_widget(spec); - that.create_search_command = function() { + that.create_search_command = function(filter) { return IPA.command({ entity: that.other_entity, method: 'find', - args: [that.filter.val()], + args: [filter], options: { forward_only: true } diff --git a/install/ui/widget.js b/install/ui/widget.js index 1a0683546..fb1ad8fbd 100644 --- a/install/ui/widget.js +++ b/install/ui/widget.js @@ -1686,7 +1686,13 @@ IPA.combobox_widget = function(spec) { name: 'filter', keypress: function(e) { if (e.which == 13) { // Enter - that.search(); + var filter = that.filter.val(); + that.search( + filter, + function(data, text_status, xhr) { + that.select(filter); + } + ); } } }).appendTo(div); @@ -1695,7 +1701,13 @@ IPA.combobox_widget = function(spec) { name: 'search', icon: 'search-icon', click: function() { - that.search(); + var filter = that.filter.val(); + that.search( + filter, + function(data, text_status, xhr) { + that.select(filter); + } + ); return false; } }).appendTo(div); @@ -1707,12 +1719,14 @@ IPA.combobox_widget = function(spec) { name: 'list', size: that.list_size, style: 'width: 100%', + click: function() { + that.close(); + }, change: function() { var value = $('option:selected', that.list).val(); that.input.val(value); IPA.select_range(that.input, 0, 0); - that.close(); that.validate(); that.set_dirty(that.test_dirty()); } @@ -1729,8 +1743,6 @@ IPA.combobox_widget = function(spec) { } that.create_error_link(container); - - that.search(); }; that.open = function() { @@ -1745,27 +1757,66 @@ IPA.combobox_widget = function(spec) { return that.list_container.css('visibility') == 'visible'; }; - that.search = function() { + that.search = function(filter) { }; that.update = function() { that.close(); + if (that.writable) { that.text.css('display', 'none'); that.input.css('display', 'inline'); - that.input.val(that.values[0]); that.open_button.css('display', 'inline'); } else { that.text.css('display', 'inline'); - that.text.html(that.values[0]); that.input.css('display', 'none'); that.open_button.css('display', 'none'); - that.input.val(that.values[0]); } + if (that.searchable) { that.filter.empty(); - that.search(); } + + // In a details page the following code will get the stored value. + // In a dialog box the value will be null. + var value = that.values.length ? that.values[0] : null; + + // In a details page the following code will show the stored + // value immediately without waiting to populate the list. + // In a dialog box it will show blank. + that.set_value(value || ''); + + // In a details page the following code will populate the list + // and select the stored value. + // In a dialog box it will populate the list and select the first + // available option. + that.search( + null, + function(data, text_status, xhr) { + that.select(value); + } + ); + }; + + that.set_value = function(value) { + that.text.html(value); + that.input.val(value); + }; + + that.select = function(value) { + + var option; + + if (value) { + option = $('option[value="'+value+'"]', that.list); + } else { + option = $('option', that.list).first(); + } + + option.attr('selected', 'selected'); + + that.set_value(option.val()); + that.set_dirty(that.test_dirty()); }; that.save = function() { @@ -1797,49 +1848,40 @@ IPA.entity_select_widget = function(spec) { that.other_entity = spec.other_entity; that.other_field = spec.other_field; - that.create_search_command = function() { + that.create_search_command = function(filter) { return IPA.command({ entity: that.other_entity, method: 'find', - args: [that.filter.val()] + args: [filter] }); }; - that.search = function() { + that.search = function(filter, on_success, on_error) { - var command = that.create_search_command(); + var command = that.create_search_command(filter); command.on_success = function(data, text_status, xhr) { that.remove_options(); - var selected_option = null; - if (that.empty_option) { - selected_option = that.create_option(); + that.create_option(); } - var filter = that.filter.val(); var entries = data.result.result; for (var i=0; i<data.result.count; i++) { var entry = entries[i]; var values = entry[that.other_field]; var value = values[0]; - var option = that.create_option(value, value); - - if (!selected_option || filter === value) { - selected_option = option; - } + that.create_option(value, value); } - if (selected_option) { - selected_option.attr('selected', 'selected'); - that.input.val(selected_option.val()); - that.set_dirty(that.test_dirty()); - } + if (on_success) on_success.call(this, data, text_status, xhr); }; + command.on_error = on_error; + command.execute(); }; |