From: Scott González Date: Thu, 13 Dec 2012 21:55:14 +0000 (-0500) Subject: Autocomplete: Combobox demo - Collapse menu when clicking button. X-Git-Tag: 1.10.0-rc.1~44 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=f6e99d2021bf9865673d08a4cef4d67ba7c586a5;p=jquery-ui.git Autocomplete: Combobox demo - Collapse menu when clicking button. --- diff --git a/demos/autocomplete/combobox.html b/demos/autocomplete/combobox.html index 6229d47b2..38c75e157 100644 --- a/demos/autocomplete/combobox.html +++ b/demos/autocomplete/combobox.html @@ -39,6 +39,7 @@ _create: function() { var input, that = this, + wasOpen = false, select = this.element.hide(), selected = select.children( ":selected" ), value = selected.val() ? selected.text() : "", @@ -129,20 +130,19 @@ }) .removeClass( "ui-corner-all" ) .addClass( "ui-corner-right ui-combobox-toggle" ) + .mousedown(function() { + wasOpen = input.autocomplete( "widget" ).is( ":visible" ); + }) .click(function() { + input.focus(); + // close if already visible - if ( input.autocomplete( "widget" ).is( ":visible" ) ) { - input.autocomplete( "close" ); - removeIfInvalid( input ); + if ( wasOpen ) { return; } - // work around a bug (likely same cause as #5265) - $( this ).blur(); - // pass empty string as value to search for, displaying all results input.autocomplete( "search", "" ); - input.focus(); }); input.tooltip({