Bug Tracker

Opened 16 years ago

Closed 16 years ago

#275 closed bug (invalid)

XML not properly parsed by Interface Autocompleter

Reported by: [email protected] 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)

iautocompleter.patch (436 bytes) - added by [email protected] 16 years ago.
This patch will fix the bug.
iautocompleter.2.patch (436 bytes) - added by anonymous 16 years ago.

Download all attachments as: .zip

Change History (3)

Changed 16 years ago by [email protected]

Attachment: iautocompleter.patch added

This patch will fix the bug.

Changed 16 years ago by anonymous

Attachment: iautocompleter.2.patch added

comment:1 Changed 16 years ago by anonymous

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.

Note: See TracTickets for help on using tickets.