Skip to main content

Bug Tracker

Side navigation

#275 closed bug (invalid)

Opened October 13, 2006 06:40PM UTC

Closed October 13, 2006 06:52PM UTC

XML not properly parsed by Interface Autocompleter

Reported by: mgrimm@gci.com Owned by:
Priority: critical Milestone:
Component: ajax Version:
Keywords: interface autocompleter Cc:
Blocked by: Blocking:
Description

The Interface plugin's Autocompleter doesn't properly handle the response XML of it's AJAX request in the update method of the iAuto object. As a result, the entire plugin fails to work.

Line 84 of iautocompleter.js looks like this:

subject.autoCFG.lastSuggestion = $('item', xml);

But it should look like this:

subject.autoCFG.lastSuggestion = $('item', xml.responseXML);
Attachments (2)
Change History (1)

Changed October 13, 2006 06:52PM UTC by anonymous comment:1

resolution: → invalid
status: newclosed

I see. This is related the the $.ajax function's parameter changes in jQuery 1.0.2. Works with 1.0.2, so closing this ticket. Some documentation would be wonderful sometime.