Re: [qooxdoo-devel] Get current code in embed.Html (with Sage cell)

2015-03-04 Thread Bober1990
Dear Mustafa, here the complete email: I simply bound the sage lib to the whole application using

Re: [qooxdoo-devel] Get current code in embed.Html (with Sage cell)

2015-03-05 Thread Bober1990
Dear Mustafa,   thanks again for your answer.   The Sage lib provides a function that takes all cells with a given class (or ID), takes the (script) content of it as the initial value for the editor and overrides the DIV with the Sage-specific DIVs (Code editor, Activate Button, results, …) in

Re: [qooxdoo-devel] Get current code in embed.Html (with Sage cell)

2015-03-10 Thread Bober1990
Dear Mustafa,   thanks again.   Unfortunately, it is still not working…   If I try to use your example:          var sage = new qx.ui.embed.Html('1+2');   sage.getContentElement().addClass('sage');   sage.s

[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

[qooxdoo-devel] HTMLElementObject.click() in Qooxdoo

2015-03-12 Thread Bober1990
Hi,     I would like to manually click on a (hidden) button existing in a qx.ui.embed.Html. I can access teh Button object by using qxWeb('.sagecell_evalButton') But I cant execute the Method click() on that Object:   qxWeb('.sagecell_evalButton').click() Uncaught TypeError: undefined is not

[qooxdoo-devel] Use of Database in qx.Desktop

2015-05-20 Thread Bober1990
Hi,   I have created a simple qooxdoo desktop application and want to store a text input in a Database (preferably MySQL).   Unfortunately, I have not found any information about such a matter in the documentation of the qx.desktop.   Is there any best practice to do so? How can it be done t