Playground¶
The Playground application allows you to play with code in an edit pane, and see the result of running that code in a preview pane. It comes with a set of pre-defined code samples, but many more are available and can be saved in the playground. Code can also be bookmarked and the links saved and re-run, to re-create the sample you were working on. This allows for easy sharing of running code samples with others.
The scope of the code you can enter in the edit pane is restricted to what you can do in the main() method of a standard qooxdoo application class.
The app features two different modes, one for creating RIA apps and one for creating mobile apps (webkit browser required).
Bookmarklet¶
Note
experimental
javascript:(function(s){try{s=document.selection.createRange().text}catch(e){s=window.getSelection().getRangeAt(0).toString()};s=s.replace(/\r?\n/g,"%250D");window.open("http://demo.qooxdoo.org/5.0.2/playground/#"+encodeURIComponent('{"code":"'+encodeURIComponent(s)+'"}'))})()