Skip to content
Permalink
Browse files
Autocomplete: Combobox demo - Collapse menu when clicking button.
  • Loading branch information
scottgonzalez authored and zmszaman committed Mar 13, 2013
1 parent d8d901b commit 3474496
Showing 1 changed file with 7 additions and 7 deletions.
@@ -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({

0 comments on commit 3474496

Please sign in to comment.