views:

569

answers:

2

I have been looking at OpenLaszlo and observed that scripting in the client is implemented in JavaScript. Does this mean it is possible to use libraries like JQuery and PrototypeJS ?

A: 

Directions on using JQuery with other Libraries: http://docs.jquery.com/Using_jQuery_with_Other_Libraries

epascarello
A: 

jQuery and Prototype rely heavily on the browser's DOM API, not just JavaScript. I am not very familiar with OpenLaszlo, but if it doesn't provide a DOM for manipulating the document to be output, then libraries oriented around abstracting cross-browser DOM incompatibilities will be less useful. Aptana's Jaxer web server claims to allow you to manipulate the DOM before it is sent to the client, even with event listeners and animations. It may be worth a look.

David Winslow