#8560 closed bug (fixed)
Autocomplete : category slect not working ( jQueryUI 1.9 )
Reported by: | Loule | Owned by: | Scott González |
---|---|---|---|
Priority: | minor | Milestone: | git |
Component: | ui.autocomplete | Version: | 1.9.0-rc.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
The example and scripts using autocomplete with categories are nto working anymore. The select event can't define ui ( ex : select : function (event,ui) { ... } ) that will return : " ui is undefined " event seems to be ok
Maybe the way to look in the ul element use a bad css selector or obsolete method for jquery UI 1.9 ( betas and RC )
Change History (3)
comment:1 Changed 11 years ago by
Milestone: | 1.9.0 → git |
---|---|
Owner: | set to scott.gonzalez |
Status: | new → assigned |
comment:2 Changed 11 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Fixed in 303f20e1b3c977d75047bed1a3533a180d73fab5.
comment:3 Changed 11 years ago by
Quick answer :) Just to let the others know, what i did to do not worry about this and get back/forward compatible code:
if(jQuery.ui.version>='1.9') {
self._renderItemData( ul, item );
} else {
self._renderItem( ul, item );
}
Seems to work pretty good, will see...
This is because we added an extra layer to the menu rendering process but we didn't update the demo. I'll fix this today as soon as I finish the rest of the demo cleanup.