Re: [qooxdoo-devel] How to get an Object from existing HTML source

2015-03-10 Thread Andreas Parusel
Hi, qooxdoo has an own query-API which is equivalent to jQuery in most cases. Simply replace ‚$‘ with ‚q‘ or ‚qxWeb‘: qxWeb('.CodeMirror')[0].CodeMirror; This should do the trick! Best regards Andreas Am 10.03.2015 um 12:02 schrieb bober1...@gmx.de: Hi, in my Deskto

[qooxdoo-devel] How to get an Object from existing HTML source

2015-03-10 Thread Bober1990
Hi,   in my Desktop-App, I would like to get an Instance of an Object for an CodeMirror Object that is created in an qx.ui.embed.Html("...").   In the _javascript_ Console I can access the Object by using JQuerry:   var editor = $('.CodeMirror')[0].CodeMirror;   Then I can edit the code in