aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.ui.autocomplete.js
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2011-02-24 10:22:51 +0100
committerScott González <scott.gonzalez@gmail.com>2011-02-24 10:24:32 +0100
commit50958718c22aab5a4f5061c313531259761648c5 (patch)
treee0e4903b788759e86752f5b28d0ba5f445cd32e0 /ui/jquery.ui.autocomplete.js
parentee34b0dabb066c4ec98a8eab824fa19bb9320eaf (diff)
downloadjquery-ui-50958718c22aab5a4f5061c313531259761648c5.tar.gz
jquery-ui-50958718c22aab5a4f5061c313531259761648c5.zip
Autocomplete: Added support for contenteditable elements. Fixes #6914 - Autocomplete: Support contenteditable.
Diffstat (limited to 'ui/jquery.ui.autocomplete.js')
-rw-r--r--ui/jquery.ui.autocomplete.js30
1 files changed, 18 insertions, 12 deletions
diff --git a/ui/jquery.ui.autocomplete.js b/ui/jquery.ui.autocomplete.js
index c35d8180c..32959b3c5 100644
--- a/ui/jquery.ui.autocomplete.js
+++ b/ui/jquery.ui.autocomplete.js
@@ -39,6 +39,8 @@ $.widget( "ui.autocomplete", {
doc = this.element[ 0 ].ownerDocument,
suppressKeyPress;
+ this.valueMethod = this.element[ this.element.is( "input" ) ? "val" : "text" ];
+
this.element
.addClass( "ui-autocomplete-input" )
.attr( "autocomplete", "off" )
@@ -89,7 +91,7 @@ $.widget( "ui.autocomplete", {
self.menu.select( event );
break;
case keyCode.ESCAPE:
- self.element.val( self.term );
+ self._value( self.term );
self.close( event );
break;
default:
@@ -97,7 +99,7 @@ $.widget( "ui.autocomplete", {
clearTimeout( self.searching );
self.searching = setTimeout(function() {
// only search if the value has changed
- if ( self.term != self.element.val() ) {
+ if ( self.term != self._value() ) {
self.selectedItem = null;
self.search( null, event );
}
@@ -117,7 +119,7 @@ $.widget( "ui.autocomplete", {
}
self.selectedItem = null;
- self.previous = self.element.val();
+ self.previous = self._value();
})
.bind( "blur.autocomplete", function( event ) {
if ( self.options.disabled ) {
@@ -170,7 +172,7 @@ $.widget( "ui.autocomplete", {
if ( false !== self._trigger( "focus", event, { item: item } ) ) {
// use value to match what will end up in the input, if it was a key event
if ( /^key/.test(event.originalEvent.type) ) {
- self.element.val( item.value );
+ self._value( item.value );
}
}
},
@@ -192,11 +194,11 @@ $.widget( "ui.autocomplete", {
}
if ( false !== self._trigger( "select", event, { item: item } ) ) {
- self.element.val( item.value );
+ self._value( item.value );
}
// reset the term after the select event
// this allows custom select handling to work properly
- self.term = self.element.val();
+ self.term = self._value();
self.close( event );
self.selectedItem = item;
@@ -205,8 +207,8 @@ $.widget( "ui.autocomplete", {
// don't set the value of the text field if it's already correct
// this prevents moving the cursor unnecessarily
if ( self.menu.element.is(":visible") &&
- ( self.element.val() !== self.term ) ) {
- self.element.val( self.term );
+ ( self._value() !== self.term ) ) {
+ self._value( self.term );
}
}
})
@@ -279,10 +281,10 @@ $.widget( "ui.autocomplete", {
},
search: function( value, event ) {
- value = value != null ? value : this.element.val();
+ value = value != null ? value : this._value();
// always save the actual value, not the one passed as an argument
- this.term = this.element.val();
+ this.term = this._value();
if ( value.length < this.options.minLength ) {
return this.close( event );
@@ -327,7 +329,7 @@ $.widget( "ui.autocomplete", {
},
_change: function( event ) {
- if ( this.previous !== this.element.val() ) {
+ if ( this.previous !== this._value() ) {
this._trigger( "change", event, { item: this.selectedItem } );
}
},
@@ -397,7 +399,7 @@ $.widget( "ui.autocomplete", {
}
if ( this.menu.first() && /^previous/.test(direction) ||
this.menu.last() && /^next/.test(direction) ) {
- this.element.val( this.term );
+ this._value( this.term );
this.menu.deactivate();
return;
}
@@ -406,6 +408,10 @@ $.widget( "ui.autocomplete", {
widget: function() {
return this.menu.element;
+ },
+
+ _value: function( value ) {
+ return this.valueMethod.apply( this.element, arguments );
}
});