Re: [qooxdoo-devel] qooxdoo build does not include folder with images

2013-05-17 Thread 689137
Only if you insist! The only warnings I was getting are of the following type: Warning: Unknown property '-moz-border-radius-bottomleft'. Declaration dropped. Source File: file:///home/user/prb/qooxdoo-2.0.1-sdk/tool/bin/app/build/index.html Warning: Unknown property 'auto-complete'. Declarati

Re: [qooxdoo-devel] qooxdoo build does not include folder with images

2013-05-17 Thread 689137
Hi all, the *#asset* compiler hint solved my problem. Thank you. -- View this message in context: http://qooxdoo.678.n2.nabble.com/qooxdoo-build-does-not-include-folder-with-images-tp7583593p7583625.html Sent from the qooxdoo mailing list archive at Nabble.com. --

Re: [qooxdoo-devel] qooxdoo build does not include folder with images

2013-05-16 Thread 689137
Hi, I am confused what you mean. I have no webserver and I am running the build command from terminal. Thanks. -- View this message in context: http://qooxdoo.678.n2.nabble.com/qooxdoo-build-does-not-include-folder-with-images-tp7583593p7583611.html Sent from the qooxdoo mailing list archive

Re: [qooxdoo-devel] qooxdoo build does not include folder with images

2013-05-16 Thread 689137
Hi, I get no error messages while building and no errors in firefox error console related to images or folders or anything like that. Thanks. -- View this message in context: http://qooxdoo.678.n2.nabble.com/qooxdoo-build-does-not-include-folder-with-images-tp7583593p7583602.html Sent from th

Re: [qooxdoo-devel] qooxdoo build does not include folder with images

2013-05-16 Thread 689137
Hi Tobias, the folder that does not get included is /source/resource/app Thank you. -- View this message in context: http://qooxdoo.678.n2.nabble.com/qooxdoo-build-does-not-include-folder-with-images-tp7583593p7583597.html Sent from the qooxdoo mailing list archive at Nabble.com. --

[qooxdoo-devel] qooxdoo build does not include folder with images

2013-05-16 Thread 689137
Hi all, when I generate source, the project runs with all the images in it. When I generate build, all images are gone. Please tell me where can I tell qooxdoo to include the images folder in the build version. Thank you. -- View this message in context: http://qooxdoo.678.n2.nabble.com/qooxd

Re: [qooxdoo-devel] The menu instance needs a configured 'opener' widget!

2013-04-11 Thread 689137
Daniel, Awesome! This helped me! Thanks a bunch! -- View this message in context: http://qooxdoo.678.n2.nabble.com/The-menu-instance-needs-a-configured-opener-widget-tp7583199p7583223.html Sent from the qooxdoo mailing list archive at Nabble.com. -

Re: [qooxdoo-devel] The menu instance needs a configured 'opener' widget!

2013-04-10 Thread 689137
Daniel, Thank you for your assistance. However, it doesn't work this way neither. I tried even opening the menu on a specific coordinate, no success. menu.openAtPoint({left:120, top:200}); alert(e.clientX+" "+e.clientY); If I run the following code, the message does show me the X and Y, but no m

Re: [qooxdoo-devel] The menu instance needs a configured 'opener' widget!

2013-04-10 Thread 689137
Daniel, Thank you for your reply! It does work with the button example in the qooxdoo playground, but gives me the following error when I try using it with the Ace editor gutter: Error: TypeError: event.getDocumentLeft is not a function Source File: file:///home/ivan/prb/qooxdoo-2.0.1-sdk/framewo

[qooxdoo-devel] Toolbar Height, Button and Tabview Bar Height

2013-02-22 Thread 689137
Hi Qooxdoo Team! Could you please tell me how to change toolbar height? I am setting it to minimum, and still it is too big for my application. Also the buttons are too big, as well as tabview's bar height. (by too big I mean its default height). For instance you can take a loog at qooxdoo playgro

Re: [qooxdoo-devel] Qooxdoo Close Event

2012-11-22 Thread 689137
Thank you all! This helped my problem! Happy Thanks Giving Day! -- View this message in context: http://qooxdoo.678.n2.nabble.com/Qooxdoo-Close-Event-tp7582052p7582085.html Sent from the qooxdoo mailing list archive at Nabble.com. ---

Re: [qooxdoo-devel] Qooxdoo Close Event

2012-11-21 Thread 689137
Marc, I found why _clean value is changed as I want it to be. I am doing the following: 1. I have a input type "execElem" in my index.html file of the qooxdoo application: 2. I get this element to the qooxdoo application as follows: var execElem = document.getElementById("execElem"); 3. I hav

Re: [qooxdoo-devel] Qooxdoo Close Event

2012-11-21 Thread 689137
Marc, here is the part of the code related to close: = qx.Class.define("app.Application", { extend : qx.application.Standalone, members : { run_function : null, libmi : null, libmi_exit : null, _clean :

Re: [qooxdoo-devel] Qooxdoo Close Event

2012-11-20 Thread 689137
Marc, thank you for your reply. I tried adding listener as you advised to this, this.getRoot() and even document, but none of them gave the desired effect. I tried this: this.getRoot().addListener("close", this.close, this); this.addListener("close", this.close, this); docuement.addListener("close

[qooxdoo-devel] Qooxdoo Close Event

2012-11-20 Thread 689137
Hi, I have a question related to qooxdoo close event. I am aware of fact that I can catch and add code to this event as follows: members : { _var : null, close: function() { //code goes here alert(this._var); //shows null no matter what value I assign it in th

Re: [qooxdoo-devel] Qooxdoo variable value changes during on close event

2012-11-19 Thread 689137
Hi Frank, unfortunately this is not the reason. Apparently the value is disposed or cleared by the time this function is called. I need to find a way to catch this moment between the browser/application is closed and the moment when variables a disposed of their values. Regards. -- View this m

[qooxdoo-devel] Qooxdoo variable value changes during on close event

2012-11-19 Thread 689137
Hi, I am trying to clean my code on the Qooxdoo Close event. I have a variable set to false initially, which changes to true if some library is loaded. During the onclose event I am checking if this variable is true, then a proceed with disposing of the library. However, no matter of whether I set

Re: [qooxdoo-devel] Qooxdoo, setting a breakpoint in ACE

2012-10-24 Thread 689137
T, I forgot to mention that I tried adding it directly to html, but for some reason it didn't work. So I guess I will have to add it through qooxdoo. What are my options? Thanks. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Qooxdoo-setting-a-breakpoint-in-ACE-tp7581774p75

[qooxdoo-devel] Qooxdoo, setting a breakpoint in ACE

2012-10-23 Thread 689137
Hi, I am working on enabling breakpoints in embedded editor. I found in google groups that the following code needs to be added: editor.on("guttermousedown", function(e){ var target = e.domEvent.target; if (target.className.indexOf("ace_gutter-cell") == -1) return; if (!ed

Re: [qooxdoo-devel] Qooxdoo and Ace Editor

2012-10-18 Thread 689137
Thank you Fritz, this worked for me just fine. I will have now to play with Editor.js and adjust it to my needs. Regards, Ivan. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Qooxdoo-and-Ace-Editor-tp7581716p7581741.html Sent from the qooxdoo mailing list archive at Nabble.c

Re: [qooxdoo-devel] Qooxdoo and Ace Editor

2012-10-18 Thread 689137
Hi Fritz, I am getting errors like Terminating on Terminal Exception and COuld not load worker. Can you please give me a complete example of a TabPage containing the ace editor, without using div? I would like it to have as little participation of html as possible. I am using ace source files as

Re: [qooxdoo-devel] Qooxdoo and Java Applet

2012-10-01 Thread 689137
to continue the above, if there is an option to run Java code from Qooxdoo in any other way besides Applet, please let me know. Thank you! -- View this message in context: http://qooxdoo.678.n2.nabble.com/Qooxdoo-and-Java-Applet-tp7581537p7581549.html Sent from the qooxdoo mailing list archiv

[qooxdoo-devel] Qooxdoo and Java Applet

2012-10-01 Thread 689137
Good Day to you all, I have a Qooxdoo project where I need to call Java code from it. Is there a simple way to do that without using HTML embed? A simple hello world example without any HTML code would be great. Thank you in advance! -- View this message in context: http://qooxdoo.678.n2.nab

[qooxdoo-devel] Qooxdoo and D3 Crossfilter

2012-09-11 Thread 689137
Hi, I am thinking of using the http://square.github.com/crossfilter/ Crossfilter component (D3 based) in my qooxdoo project. As I know, qooxdoo is js only, and the html file is generated by a script. On the other hand Crossfilter (as well as other D3 components) are html+css+js based. Will I be

Re: [qooxdoo-devel] Table Column Color

2012-09-06 Thread 689137
Thank you Martin. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Table-Column-Color-tp7581260p7581264.html Sent from the qooxdoo mailing list archive at Nabble.com. -- Live Security Virtual Conferenc

Re: [qooxdoo-devel] Qooxdoo and JS-Ctypes problem while generating source

2012-08-15 Thread 689137
Daniel, This solves my problem! I got some more errors like Scanning libraries \Unknown operator u'int' for using ctypes.int, but applying same approach solves this problem as well. Thank you! -- View this message in context: http://qooxdoo.678.n2.nabble.com/Qooxdoo-and-JS-Ctypes-problem-whi

Re: [qooxdoo-devel] Qooxdoo and JS-Ctypes problem while generating source

2012-08-15 Thread 689137
But what are the alternatives of the Components.utils.import? -- View this message in context: http://qooxdoo.678.n2.nabble.com/Qooxdoo-and-JS-Ctypes-problem-while-generating-source-tp7580977p7580984.html Sent from the qooxdoo mailing list archive at Nabble.com. --

[qooxdoo-devel] Qooxdoo and JS-Ctypes problem while generating source

2012-08-15 Thread 689137
I am using JS-Ctypes in my Qooxdoo project. When I try to generate source, I am given the following error: Scanning libraries -Unknown operator u'import' This error is risen when using the following function: Components.utils.import("resource://gre/modules/ctypes.jsm"); Does any one know how to