Opened 12 years ago
Closed 12 years ago
#7302 closed bug (notabug)
Autocomplete : Change event not fired
Reported by: | mickotaf | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 1.9.0 |
Component: | ui.autocomplete | Version: | 1.8.11 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Hi, I think there is is a bug, when you selected an item in autocomplete list. And next when you delete letter by letter the change event is not fire if the input is empty. So i change : _change:function(a){
this.previous!==this.element.val()&&this._trigger("change",a,{
item:this.selectedItem })
}
by : _change:function(a){
this.previous!==this._trigger("change",a,{
item:this.selectedItem })&&this.element.val()
}
And now that's working if the input is empty.
Best Regards
Mickael
Change History (3)
comment:1 Changed 12 years ago by
comment:3 Changed 12 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
Excuse-me form my bad english !!!!!