jQuery: The Write Less, Do More JavaScript Library

Ticket #275 (closed bug: invalid)

Opened 2 years ago

Last modified 1 year ago

XML not properly parsed by Interface Autocompleter

Reported by: mgrimm@… Assigned to: anonymous
Type: bug Priority: critical
Milestone: Component: ajax
Version: Keywords: interface autocompleter
Cc: Needs:

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

Change History

Note: See TracTickets for help on using tickets.