Opened 11 years ago

Closed 11 years ago

Last modified 11 years ago

#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 Scott González

Milestone: 1.9.0git
Owner: set to scott.gonzalez
Status: newassigned

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.

comment:2 Changed 11 years ago by Scott González

Resolution: fixed
Status: assignedclosed

comment:3 Changed 11 years ago by Loule

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...

Note: See TracTickets for help on using tickets.