[vwnc] VW7.7 - Seaside - script.aculo.us requires the Prototype JavaScript framework >= 1.6.0.3

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

[vwnc] VW7.7 - Seaside - script.aculo.us requires the Prototype JavaScript framework >= 1.6.0.3

Machisuji
Hey,

I'm trying to display a lightbox after a user submitted a form and for this I the following in the callback:

    self lightbox: MyComponent new.

Unfortunately it does not work, though.
When I try it I get the following Javascript errors:

   uncaught exception: script.aculo.us requires the Prototype JavaScript framework >= 1.6.0.3

   [Break on this error] (no source for )
   Sortable is not defined
   [Break on this error] Object.extend(Sortable, {\rtreePatch.js (Zeile 1)

   updateLightbox is not defined  

I added PTDeploymentLibrary and SUDeploymentLibrary to the RootComponent.
Does anyone have an idea as to why this happens? Am I missing a Library or something?


Regards,

Markus Kahl

_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
Reply | Threaded
Open this post in threaded view
|

Re: [vwnc] VW7.7 - Seaside - script.aculo.us requires the Prototype JavaScript framework >= 1.6.0.3

Flynch55
I had the same problem.  The solution for me was the order of the PTDeploymentLibrary and SUDeploymentLibrary.

The Prototype library has to occur before the SU library.  Once I changed the order, it solved the problem.