}, 50);
});
+test("all events - contenteditable", function() {
+ expect(12);
+ var ac = $("#autocomplete-contenteditable").autocomplete({
+ delay: 0,
+ source: data,
+ search: function(event) {
+ same(event.type, "autocompletesearch");
+ },
+ open: function(event) {
+ same(event.type, "autocompleteopen");
+ },
+ focus: function(event, ui) {
+ same(event.type, "autocompletefocus");
+ same(ui.item, {label:"java", value:"java"});
+ },
+ close: function(event) {
+ same(event.type, "autocompleteclose");
+ same( $(".ui-menu:visible").length, 0 );
+ },
+ select: function(event, ui) {
+ same(event.type, "autocompleteselect");
+ same(ui.item, {label:"java", value:"java"});
+ },
+ change: function(event, ui) {
+ same(event.type, "autocompletechange");
+ same(ui.item, {label:"java", value:"java"});
+ same( $(".ui-menu:visible").length, 0 );
+ start();
+ }
+ });
+ stop();
+ ac.focus().text("ja").keydown();
+ setTimeout(function() {
+ same( $(".ui-menu:visible").length, 1 );
+ ac.simulate("keydown", { keyCode: $.ui.keyCode.DOWN });
+ ac.simulate("keydown", { keyCode: $.ui.keyCode.ENTER });
+ $.browser.msie ? ac.simulate("blur") : ac.blur();
+ }, 50);
+});
+
test("change without selection", function() {
expect(2);
stop();
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" )
self.menu.select( event );
break;
case keyCode.ESCAPE:
- self.element.val( self.term );
+ self._value( self.term );
self.close( event );
break;
default:
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 );
}
}
self.selectedItem = null;
- self.previous = self.element.val();
+ self.previous = self._value();
})
.bind( "blur.autocomplete", function( event ) {
if ( self.options.disabled ) {
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 );
}
}
},
}
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;
// 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 );
}
}
})
},
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 );
},
_change: function( event ) {
- if ( this.previous !== this.element.val() ) {
+ if ( this.previous !== this._value() ) {
this._trigger( "change", event, { item: this.selectedItem } );
}
},
}
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;
}
widget: function() {
return this.menu.element;
+ },
+
+ _value: function( value ) {
+ return this.valueMethod.apply( this.element, arguments );
}
});