Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
to fix problem with autocompleter with chrome fallowed replacment in autocompleter2.js is needed (~179 line):
(in chrome el is array, but in firefox it is elElement)
[code:1] choiceOver: function(el) {
if (this.selected) this.selected.removeClass('autocompleter-selected');
if (el instanceof Array) {
this.selected = el[0].addClass('autocompleter-selected');
} else {
this.selected = el.addClass('autocompleter-selected');
}
//this.selected = el.addClass('autocompleter-selected');
},
choiceSelect: function(el) {
if (el instanceof Array) {
this.observer.value = this.element.value = el[0].inputValue;
} else {
this.observer.value = this.element.value = el.inputValue;
}
//this.observer.value = this.element.value = el.inputValue;
this.hideChoices();
this.fireEvent('onSelect', [this.element], 20);
},[/code:1]
Post edited by: boraa, at: 2010/10/04 03:40
Please Log in or Create an account to join the conversation.