aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2010-07-20 13:24:53 -0400
committerScott González <scott.gonzalez@gmail.com>2010-07-20 13:24:53 -0400
commitc2c09e89538ce071efba7ca1e923b5627c236f8c (patch)
tree7502e74e542c0932a19189479987f488920da07b /ui
parente4273ff6212040bd721184d661a39f046c4a461d (diff)
downloadjquery-ui-c2c09e89538ce071efba7ca1e923b5627c236f8c.tar.gz
jquery-ui-c2c09e89538ce071efba7ca1e923b5627c236f8c.zip
Autocomplete: Clear selectedItem property whenever the user types something. Also updated combobox to clear the select element when clearing the text element. Fixes #5453 - Autocomplete: combobox demo doesn't remove invalid values.
Diffstat (limited to 'ui')
-rw-r--r--ui/jquery.ui.autocomplete.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/jquery.ui.autocomplete.js b/ui/jquery.ui.autocomplete.js
index 7056e07f5..b9daad86b 100644
--- a/ui/jquery.ui.autocomplete.js
+++ b/ui/jquery.ui.autocomplete.js
@@ -79,6 +79,7 @@ $.widget( "ui.autocomplete", {
self.searching = setTimeout(function() {
// only search if the value has changed
if ( self.term != self.element.val() ) {
+ self.selectedItem = null;
self.search( null, event );
}
}, self.options.delay );