Opened 16 years ago
Closed 16 years ago
#275 closed bug (invalid)
XML not properly parsed by Interface Autocompleter
Reported by: | 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 (3)
Changed 16 years ago by
Attachment: | iautocompleter.patch added |
---|
Changed 16 years ago by
Attachment: | iautocompleter.2.patch added |
---|
comment:1 Changed 16 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
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.
This patch will fix the bug.