Ville, Am Mittwoch, den 01.12.2010, 10:52 -0800 schrieb 9902468: > has anyone used Prototype 1.7? [...] I have faced problems that appear > with ajax: the javascript that get's attached to the ajax response is > never evaluated.
I think I remember a problem like that when I tried a Prototype 1.7 RC with Tapestry. However, I got an error message that led me to line 1913 of tapestry.js where it says Object.keys(reply.zones).each(...); The problem was that if the response was not generated by a MultiZoneUpdate, reply.zones is undefined and the version of Prototype seemed to have a problem with that. For me, changing the line to reply.zones != undefined && Object.keys(reply.zones).each(...); did the trick. hth, Jochen --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org