autocomplete, continued

This commit is contained in:
Rolux 2010-02-18 20:45:23 +05:30
parent f2608df14d
commit a26490d1d3

View file

@ -1618,6 +1618,7 @@ requires
}
}
function keypress(event) {
if (event.keyCode != 13) {
setTimeout(function() {
var value = that.val();
if (self.options.autocomplete && value != self.value) {
@ -1626,6 +1627,7 @@ requires
}
}, 50);
}
}
function onClick(event, data) {
Ox.print("onClick", data)
that.val(data.title);