Re: [qooxdoo-devel] Info request

2009-11-04 Thread Derrell Lipman
On Wed, Nov 4, 2009 at 19:34, Gianluca Rettore wrote: > My solution of the problem is use jquery with qooxdoo but i want use > only qooxdoo! > > So if i use qx.ui.remote.Request with set CrossDomain(true) the > transport is convert in script! > > Well, how the returs is made?? > A cross-domain re

[qooxdoo-devel] Info request

2009-11-04 Thread Gianluca Rettore
My solution of the problem is use jquery with qooxdoo but i want use only qooxdoo! So if i use qx.ui.remote.Request with set CrossDomain(true) the transport is convert in script! Well, how the returs is made?? Thank you for any suggestions! Gianluca --

Re: [qooxdoo-devel] announcing JsQt-0.4-beta

2009-11-04 Thread Burak Arslan
Fritz Zaucker wrote: > Hi Burak, > > which version of qt designer is it? > > In Ubuntu the packages are called qt3-designer and qt4-designer, I believe. > > On Ubuntu-Jaunty the current version of designer is 4.5.0. > hi fritz, you need files produced by designer 4.4 and above. so 4.5.0 is f

Re: [qooxdoo-devel] generate source error

2009-11-04 Thread Riccardo-Maria BIANCHI
Hi Gene, yes, I agree with you. It would be better to change the name from the beginning in order to start the creation process with a clean value. Or crashing the creation process at the start with an error message inviting the user to change the application name. Cheers, Ric. Gene Am

Re: [qooxdoo-devel] generate source error

2009-11-04 Thread Riccardo-Maria BIANCHI
Hi thron7, thanks for you exhaustive and detailed answer! :-) Now I understand why the appname variable with hyphen was passed to the real generator even before loading the config.json file! :-P So it's just the directory name! Ok, I'll re-recreate the app, in order to get a clean installati

Re: [qooxdoo-devel] Including non-qooxdoo libraries

2009-11-04 Thread thron7
> I > have a minified script persisit-all-min.js and a small flash file called > persist.swf that I both put into source/script folder of the contribution. > It shouldn't go into source/class since it is not qooxdoo-compliant. Maybe > an extra folder "lib" or "vendor" or "external" should be added?

Re: [qooxdoo-devel] generate source error

2009-11-04 Thread Gene Amtower
I think one of the inherent but unstated points in the original post is why "create-application" knows enough to remove the hyphen in some places but not everywhere, resulting in a mismatch within the created application. It would be better to fail right from the start with a harshly-chastising me

Re: [qooxdoo-devel] generate source error

2009-11-04 Thread thron7
Derrell is right, it's not quite worth the effort, but anyway... > --- > /usr/bin/python2.6 generate.py source > > > INITIALIZING: PLOTS-DASHBOARD This is from the directory name (which obviously you haven't

Re: [qooxdoo-devel] build version not working in chrome

2009-11-04 Thread Burak Arslan
Guilherme Aiolfi wrote: > You don't have a body tag in your index.html file. adding the body tag indeed fixes the problem. but i still find it strange that the source version works without a body tag, and the build version doesn't. thanks! burak --

Re: [qooxdoo-devel] build version not working in chrome

2009-11-04 Thread thron7
> You don't have a body tag in your index.html file. ...and here is the corresponding bug: http://bugzilla.qooxdoo.org/show_bug.cgi?id=2858 It was essentially addressed here: http://bugzilla.qooxdoo.org/show_bug.cgi?id=2017, and fixed for the framework index.html's. Searching bugzilla helps :).

Re: [qooxdoo-devel] adding atoms to layout

2009-11-04 Thread Grykar
unfortunately it doesn't work for me because I need acccess to all atoms please see how it works. Login as demo no password is needed http://family3.org/tree_/build/index.html Karol Matthew Gregory wrote: > > It might help if you explain a little what "next task" is, and also why > these ato

Re: [qooxdoo-devel] Table data font, and making table header disappear

2009-11-04 Thread Derrell Lipman
On Wed, Nov 4, 2009 at 12:29, Stefan Volbers wrote: > Hi Jonathan, Christian, > > thanks so far for your help! > Maybe heading for treevirtual is indeed a better idea, I will look into > that. > The concept that wasn't mentioned is that treevirtual is a subclass of table. You can do exactly that

Re: [qooxdoo-devel] build version not working in chrome

2009-11-04 Thread Guilherme Aiolfi
You don't have a body tag in your index.html file. On Wed, Nov 4, 2009 at 3:18 PM, Burak Arslan wrote: > hi, > > using qooxdoo-0.8.3, the build version of the attached application (which > is the same test case i sent some time ago for another issue) does not work > for me in chrome 3.0.195.27 --

Re: [qooxdoo-devel] Table data font, and making table header disappear

2009-11-04 Thread Stefan Volbers
Hi Jonathan, Christian, thanks so far for your help! Maybe heading for treevirtual is indeed a better idea, I will look into that. Greetings, Stefan panyasan wrote: > > > Jonathan Weiß wrote: >> >> I am not sure if it is possible to hide the header of a table. Perhaps >> some else know if and

[qooxdoo-devel] build version not working in chrome

2009-11-04 Thread Burak Arslan
hi, using qooxdoo-0.8.3, the build version of the attached application (which is the same test case i sent some time ago for another issue) does not work for me in chrome 3.0.195.27 -- the latest version on windows. the reference to document.body in qx.ui.tooltip.Manager 's ctor is null in t

Re: [qooxdoo-devel] Table data font, and making table header disappear

2009-11-04 Thread panyasan
Jonathan Weiß wrote: > > > I am not sure if it is possible to hide the header of a table. Perhaps > some else know if and how this is possible? > > see http://n2.nabble.com/Hide-header-row-in-TreeVirtual-td2662225.html -- View this message in context: http://n2.nabble.com/Table-data-font-

Re: [qooxdoo-devel] href link in table cell does not work on click

2009-11-04 Thread Jonathan Weiß
Hello Marcel, my guess would be that the table cell catches the click event and stops it so that is does not reach the link... You could add a cellClick listener and check if the table cell with your link is clicked. In this case you can perform window.open("http://www.google.com";). Or try to

Re: [qooxdoo-devel] Table data font, and making table header disappear

2009-11-04 Thread Jonathan Weiß
Hello Stefan, it is possible to change the size of the font inside the table cells, but it is a bit complicated. You have to write an own cell renderer and overwrite the constructor of qx.ui.table.cellrenderer.Abstract. Just copy the constructor code and add a font-size entry to the map inside

Re: [qooxdoo-devel] Confused about qx.bom.Collection

2009-11-04 Thread Gene Amtower
Martin, First off, your supplied HTML string is not well-formed, so that's going to cause some confusion regardless of the rest of my answer. Also, qx.bom.Collection.html takes your string as input and parses it into multiple collection elements based on DOM levels, so it detected 3 distinct DO

[qooxdoo-devel] Confused about qx.bom.Collection

2009-11-04 Thread Martin Contento
Hi list. Could somebody enlighten me what i'am doing wrong here? I want to get all the "" tags (with their full content/children) out of a block of html (as a string)... var foo = qx.bom.Collection.html(''); bar = foo.filter("b"); bar.forEach(this.doSomething); **

Re: [qooxdoo-devel] Low Level Question

2009-11-04 Thread Guilherme Aiolfi
Hi Alexander, That worked. Thank you. On Wed, Nov 4, 2009 at 1:14 PM, Alexander Steitz wrote: > Hi Guilherme, > > On Wednesday 04 November 2009 Guilherme Aiolfi wrote: > > I'm pretty sure it's simple but I not used to low level stuff. What I > want > > to do is create a click event in the recent

Re: [qooxdoo-devel] generate source error

2009-11-04 Thread Riccardo-Maria BIANCHI
Ok, got it! thanks for your answer :-) Ric. Derrell Lipman wrote: > On Wed, Nov 4, 2009 at 08:54, Riccardo-Maria BIANCHI > wrote: > > > I changed all occurrencies of "plots-dashboard" in "application" and > "name" field in my config files (config.json, Man

Re: [qooxdoo-devel] Low Level Question

2009-11-04 Thread Alexander Steitz
Hi Guilherme, On Wednesday 04 November 2009 Guilherme Aiolfi wrote: > I'm pretty sure it's simple but I not used to low level stuff. What I want > to do is create a click event in the recently created button to remove its > parent div: > > qx.bom.Collection.query("#add_category_button").a

Re: [qooxdoo-devel] Tabview Page doesn't fire "appear" event if it has no children

2009-11-04 Thread Jonathan Weiß
Hi John, I don't know anything about this bug? Do you have a bug id for me? It seems to be working in current trunk, see: http://tinyurl.com/qxtabviewappear Cheers, Jonathan - Jonathan Weiß Framework Engineer http://mysterycity.de/blog Blog - http://www.linkedin.com/in/jonathanrass Lin

Re: [qooxdoo-devel] Layouting advice needed

2009-11-04 Thread Jonathan Weiß
Hello Dennis! The SplitPane[1] widget is perfect if you want to have one widget with a fixed and one a flexible value. If you want to set a background image and stretch it to the full widget size, you have to use a background decorator[2]. With this decorator you can set the background image beh

Re: [qooxdoo-devel] announcing JsQt-0.4-beta

2009-11-04 Thread Fritz Zaucker
Hi Burak, which version of qt designer is it? In Ubuntu the packages are called qt3-designer and qt4-designer, I believe. On Ubuntu-Jaunty the current version of designer is 4.5.0. Cheers, Fritz On Wed, 4 Nov 2009, Burak Arslan wrote: > As to your question, the designer comes from qt-gui pack

Re: [qooxdoo-devel] announcing JsQt-0.4-beta

2009-11-04 Thread Burak Arslan
Guilherme Aiolfi wrote: > Hi Burak, > > that's a very interesting project. > > Sorry my ignorance but where is the download link for QtDesigner? > > All I can find is Qt Creator IDE that come with the Qt SDK. > > Is QtDesigner a part of Qt Creator? > > Anyway, I'm downloading the SDK to test it. :)

Re: [qooxdoo-devel] generate source error

2009-11-04 Thread Derrell Lipman
On Wed, Nov 4, 2009 at 08:54, Riccardo-Maria BIANCHI wrote: > > I changed all occurrencies of "plots-dashboard" in "application" and > "name" field in my config files (config.json, Manifest.json) and > everywhere...but still I get this header with the hyphen "-" in the name > when I run generate.

Re: [qooxdoo-devel] generate source error

2009-11-04 Thread Riccardo-Maria BIANCHI
Hi Jonathan, Now everything's working fine, but I still have a question. I changed all occurrencies of "plots-dashboard" in "application" and "name" field in my config files (config.json, Manifest.json) and everywhere...but still I get this header with the hyphen "-" in the name when I run gene

Re: [qooxdoo-devel] announcing JsQt-0.4-beta

2009-11-04 Thread Guilherme Aiolfi
Hi Burak, that's a very interesting project. Sorry my ignorance but where is the download link for QtDesigner? All I can find is Qt Creator IDE that come with the Qt SDK. Is QtDesigner a part of Qt Creator? Anyway, I'm downloading the SDK to test it. :) On Wed, Nov 4, 2009 at 8:47 AM, Burak A

Re: [qooxdoo-devel] adding atoms to layout

2009-11-04 Thread Grykar
Matt, thanks for this hint. I test it today. I have to wait for all atoms because "next task" reads position of them. Karol Matthew Gregory wrote: > > It might help if you explain a little what "next task" is, and also why > these atoms are added in random order. > > If you know how many a

Re: [qooxdoo-devel] adding atoms to layout

2009-11-04 Thread Matthew Gregory
It might help if you explain a little what "next task" is, and also why these atoms are added in random order. If you know how many atoms are added, and you want to wait until they are all onscreen you could use the appear event and a counter. var count = 0; eachAtom.addListener("appear", funct

[qooxdoo-devel] adding atoms to layout

2009-11-04 Thread Grykar
Hi I am adding a few atoms to layout. After all atoms were added I would like to start "next task". The atoms are added in random order therefore I don't know which one is last. It cannot be solved by add appear event to each atom due to "next task" should be start only one time and all atoms sho

Re: [qooxdoo-devel] js performance question

2009-11-04 Thread Fabian Jakobs
Jean-Baptiste BRIAUD -- Novlog schrieb: > Hi the list ! > > What would you recommend me to choose between : > 1. > anInstance.index1 = ... > anInstance.index2 = ... > > 2. > anInstance["index1"] = ... > anInstance["index2"] = ... > > On both I can iterates on indexes, I can have direct access to an

Re: [qooxdoo-devel] announcing JsQt-0.4-beta

2009-11-04 Thread Burak Arslan
Jonathan Weiß wrote: > Hello Burak, > > > this is very interesting! I am sure we will mention this in our weekly blog > post. > Could you perhaps write a few words about jsqt to explain it to our > mailinglist users? > > Keep up the good work! > > hello jonathan, Thanks :) As indicated in its

[qooxdoo-devel] announcing soap client 0.5.0

2009-11-04 Thread Burak Arslan
hello, along with a number of minor bugfixes, this release of the soap client comes with a partial rewrite of the core wsdl parsing and request decoding engine that drops the xpath use altogether for a custom-tailored caching solution. xpath evaluator support on modern browsers is not on par w

Re: [qooxdoo-devel] generate source error

2009-11-04 Thread Jonathan Weiß
Hello Riccardo-Maria, I am glad that you found the error. Please note that an application name must NOT contain an hyphen ("-")! Cheers, Jonathan - Jonathan Weiß Framework Engineer http://mysterycity.de/blog Blog - http://www.linkedin.com/in/jonathanrass LinkedIn - http://www.xing.com

Re: [qooxdoo-devel] announcing JsQt-0.4-beta

2009-11-04 Thread Jonathan Weiß
Hello Burak, this is very interesting! I am sure we will mention this in our weekly blog post. Could you perhaps write a few words about jsqt to explain it to our mailinglist users? Keep up the good work! Kind regards Jonathan - Jonathan Weiß Framework Engineer http://mysterycity.de/blog

Re: [qooxdoo-devel] Theming question: How to get rid of gradient background image

2009-11-04 Thread Jonathan Weiß
Hello Matthew, yes, null would als work, as we do a simple check like "if (decorator) ... {} ". But we decided to use undefined anywhere in the qx.theme namespace, so it would be convenient to stay with it. ;-) Cheers Jonathan - Jonathan Weiß Framework Engineer http://mysterycity.de/blog

Re: [qooxdoo-devel] window is moved beyond the screen

2009-11-04 Thread Matthew Gregory
I had this same problem. I've created a scrollable desktop that I am planning on making a contrib. There are a few problems with it currently, I'll see if I get time to fix these, if not I'll commit as is. To stop the problems you are getting though you could just set allowGrowX and allowGrowY