Вот учебник от farrukhaziz о том, как добавить эту функциональность в плагин: http://plugins.jquery.com/node/10336
Вам нужно будет отредактировать исходный код плагина.
Добавьте часть 'LaunchManual' в этот раздел источника.
flushCache: function() {
return this.trigger("flushCache");
},
setOptions: function(options){
return this.trigger("setOptions", [options]);
},
unautocomplete: function() {
return this.trigger("unautocomplete");
},
launchManual: function() { //ADD THIS
return this.trigger("launchManual");
}
и бит «LaunchManual» в этом разделе:
}).bind("flushCache", function() {
cache.flush();
}).bind("setOptions", function() {
$.extend(options, arguments[1]);
// if we've updated the data, repopulate
if ( "data" in arguments[1] )
cache.populate();
}).bind("unautocomplete", function() {
select.unbind();
$input.unbind();
$(input.form).unbind(".autocomplete");
}).bind("launchManual", function() { //ADD THIS
if( !cache.load( $input.val() ) )
{
cache.flush();
cache.populate();
}
lastKeyPressCode = KEY.DOWN; // equivalent of 40 (down arrow)
onChange(0, true);
});
Затем вы можете вызвать функцию, чтобы показать выпадающий список:
$('#textbox').click(function() {
$(this).launchManual();
});