Hi Vance,
Unless you're using the AJAX branch, which does feature JSON evaluation
for the response body, the "json" argument you have relies exclusively,
for now, on the X-JSON header.
I assume your JSON file is passed (as it should be) in the response
body. If you're clean, you served that response with a JSON MIME type, too.
At any rate, what you need to get it working on 1.5.0 then is to
manually eval your responseText, preferrably wrapped between
parentheses. Something along these lines:
...
onComplete: function(transport) {
var json = eval('(' + transport.responseText + ')');
// rest of your code here
}
I believe that should do it.
--
Christophe Porteneuve a.k.a. TDD
"[They] did not know it was impossible, so they did it." --Mark Twain
Email: [EMAIL PROTECTED]
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---