Fixed problem with combobox.

The entity select widget has been modified to handle timing issue
in both dialog box and details page.

Ticket #1736
This commit is contained in:
Endi S. Dewata
2011-08-30 12:33:03 -05:00
parent b7121a8cbd
commit ebb0b386a3
3 changed files with 73 additions and 30 deletions

View File

@@ -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
}