Autocomplete combobox demo: Reset the internal term property when an invalid selection is made. Fixes #6695 - Autocomplete combobox example does not show suggestion on second try.

This commit is contained in:
Scott González
2010-11-30 17:55:29 -05:00
parent 98f7e6a8d6
commit ddb4694cc1

View File

@@ -67,6 +67,7 @@
// remove invalid value, as it didn't match anything
$( this ).val( "" );
select.val( "" );
input.data( "autocomplete" ).term = "";
return false;
}
}