Search and Top Navigation
#8560 closed bug (fixed)
Opened September 10, 2012 10:11AM UTC
Closed September 10, 2012 03:38PM UTC
Last modified September 11, 2012 08:07AM UTC
Autocomplete : category slect not working ( jQueryUI 1.9 )
Reported by: | Loule | Owned by: | scottgonzalez |
---|---|---|---|
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 )
Attachments (0)
Change History (3)
Changed September 10, 2012 01:42PM UTC by comment:1
milestone: | 1.9.0 → git |
---|---|
owner: | → scott.gonzalez |
status: | new → assigned |
Changed September 10, 2012 03:38PM UTC by comment:2
resolution: | → fixed |
---|---|
status: | assigned → closed |
Fixed in 303f20e1b3c977d75047bed1a3533a180d73fab5.
Changed September 11, 2012 08:07AM UTC by comment:3
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.