I found that if I use this code in my onSuccess function, I can force
it to work:
updateOnSuccess : function(response) {
if (Prototype.Browser.IE) {
var d = new ActiveXObject("MSXML2.DOMDocument");
d.loadXML(response.responseText);
response.responseXML = d;
}
...code to use response.responseXML ...
So I can force IE (I'm using IE7, forgot to say that originally) to
parse the XML and store it as a document, so it's gotta be valid XML.
But the automatic processing that is supposed to happen with the
response is not happening. I'd still like to understand why not, if
anyone has any ideas.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby
on Rails: Spinoffs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/rubyonrails-spinoffs?hl=en
-~----------~----~----~----~------~----~------~--~---