Re: [qooxdoo-devel] Bad resource leakage

2010-06-28 Thread Fink, Andreas
Hi, I could imagine, that this could also be a problem of Javascript debuggers, for example Firebug in Firefox or the Javascript Console in Chrome. Have you tested it with a build version and all debuggers off? I know, that Firebug produce memory leaks in the browser, while developing with the

Re: [qooxdoo-devel] Last newbie question of the day

2010-06-28 Thread Alexander Steitz
Hi Jeff, Am 28.06.2010 15:45, schrieb jeff: > var learningobject = new qx.ui.form.TextArea(). > set({ > height:70, > wrap :true, > backgroundColor:'#DD', > decorator: mydecoration > }); > > I would like my textarea to auto wrap as user types, rather than have > the scrollbar turn on. I

[qooxdoo-devel] instance of class

2010-06-28 Thread santosh kumar
Hi, Below is the sample code for creating a buttton. Can some one please explain me about 1) where is the instance created for the class "custom.Application" 2) what exactly qx.application.Standalone refer to and why it is used here? qx.Class.define("custom.Application", { extend : qx.applicati

[qooxdoo-devel] Table cell renderer

2010-06-28 Thread Nika
Hi Everyone I am using a table and I need some kind of special renderer for that table. Depending on information in the cellvalue the cell should be renderered as checkbox, image, text or bold text. So I guess I need to extend qx.ui.table.cellrenderer.Default. But I am not really sure on how to d

Re: [qooxdoo-devel] Re mote table model

2010-06-28 Thread Nika
Hi Derrel I maybe didnt explain exaclty what I meant. I want to hide columns header. And I wonder if I need to set it up by using function setColumns. I definitely need to have columns Ids. So I wanted to use only one function: setColumnIds. However this return me an error. Thanks for the code f

[qooxdoo-devel] Bad resource leakage

2010-06-28 Thread Per-Ola Stenborg
Hi all, I'm developing an application which you can think of as a point of sale client. It needs to be running for days without browser restart. I noticed when starting to test the client that it started to loose performance and consume the PC:s resources after a few hours. This problem might b

Re: [qooxdoo-devel] Hello from a newbie.

2010-06-28 Thread nrg-b
Oh well - polling it is. Thx for the pointer to qx.io.PartLoader.require - are there any tutorials/examples which make use of partitioning? As for the footie, there is a strong case that goal-line technology (or an extra official at either end) can only help provide more info to the Referree. H

[qooxdoo-devel] Get Table Header Label with Selenium

2010-06-28 Thread Olivier ZORO-BI
Hi, I would like to get the Label of the Header of a column from the column. How is it possible with Selenium? Cheers. Olivier -- This SF.net email is sponsored by Sprint What will you do first with EVO, the first 4G ph

Re: [qooxdoo-devel] Tree - setModelSelection problem

2010-06-28 Thread sid_curious
done: http://bugzilla.qooxdoo.org/show_bug.cgi?id=3809 #3809 -- View this message in context: http://qooxdoo.678.n2.nabble.com/Tree-setModelSelection-problem-tp5223872p5231051.html Sent from the qooxdoo mailing list archive at Nabble.com. --

[qooxdoo-devel] Last newbie question of the day

2010-06-28 Thread jeff
for me. var learningobject = new qx.ui.form.TextArea(). set({ height:70, wrap :true, backgroundColor:'#DD', decorator: mydecoration }); I would like my textarea to auto wrap as user types, rather than have the scrollbar turn on. Is 'wrap' the wrong property - since it does not seem to h

Re: [qooxdoo-devel] textarea backgroundColor not filling.

2010-06-28 Thread jeff
Never mind - got it :) var mydecoration = new qx.ui.decoration.Single(1, "solid", "black"); var learningobject = new qx.ui.form.TextArea(). set({ height:70, wrap :true, backgroundColor:'#DD', decorator: mydecoration }); Thanks anyway. Jeff On Mon, 2010-06-28 at 08:56 -0400, jeff wrote:

Re: [qooxdoo-devel] textarea backgroundColor not filling.

2010-06-28 Thread jeff
Not quite what I wanted - Now the border is gone. I guess I don't understand decorators. Could someone point me to some info on those. The demo on decorators didn't help much as it was fairly sparse. Thanks. Jeff On Mon, 2010-06-28 at 11:42 +0200, Alexander Steitz wrote: > Hi Jeff, > > Am 28.06

Re: [qooxdoo-devel] Sending an event directly to an element

2010-06-28 Thread Alexander Steitz
Hi Werner, Am 28.06.2010 14:01, schrieb Werner Thie: > Just took me the better part of the last two hours to sift through the > source to figure out how to send an event directly to a button. Now I > want to make sure I'm doing the right thing - does anybody object: > > var btn = new qx.ui.form.Bu

Re: [qooxdoo-devel] elaborate GUI

2010-06-28 Thread Kenneth Tilton
panyasan wrote: > > Kenneth Tilton wrote: >> The databinding mechanism also looks a lot hairier than messages, only >> to provide a less agile tool. Why bother? >> > > Hi Kenny, > > I think you underestimate the power of databinding - it is a different > animal compared with the message syste

Re: [qooxdoo-devel] elaborate GUI

2010-06-28 Thread Kenneth Tilton
Fritz Zaucker wrote: > I am not talkinf about data binding, just plain events (there are too types, > one allowing to sent data along). Cheers, Fritz > That is still not as loosely-coupled as subscribe/unsubscribe to a string ID. kt -- http://www.stuckonalgebra.com "The best Algebra tutor

[qooxdoo-devel] Sending an event directly to an element

2010-06-28 Thread Werner Thie
Hi all Just took me the better part of the last two hours to sift through the source to figure out how to send an event directly to a button. Now I want to make sure I'm doing the right thing - does anybody object: var btn = new qx.ui.form.Button('Test'); btn.addListener("execute", function(e

Re: [qooxdoo-devel] elaborate GUI

2010-06-28 Thread panyasan
Kenneth Tilton wrote: > > The databinding mechanism also looks a lot hairier than messages, only > to provide a less agile tool. Why bother? > Hi Kenny, I think you underestimate the power of databinding - it is a different animal compared with the message system --- which I use myself a lot

Re: [qooxdoo-devel] SVG wrapper - worth a contrib?

2010-06-28 Thread Derrell Lipman
On Mon, Jun 28, 2010 at 04:01, Andreas Ecker wrote: > Hi Derrell, > > thanks for bringing your SSVG into attention. It could indeed become an > unifying layer on top of different renderers (currently Walter Zorn, but > later maybe also SVG, Canvas, etc.). > > Like Marc said, I'd also suggest to c

Re: [qooxdoo-devel] elaborate GUI

2010-06-28 Thread Fritz Zaucker
I am not talkinf about data binding, just plain events (there are too types, one allowing to sent data along). Cheers, Fritz -- Fritz Zaucker Oetiker+Partner AG Aarweg 15 CH-4600 Olten +41 62 755 9903 On 28.06.2010, at 12:05, Kenneth Tilton wrote: > > > Fritz Zaucker wrote: >> I don't see th

Re: [qooxdoo-devel] elaborate GUI

2010-06-28 Thread Kenneth Tilton
Fritz Zaucker wrote: > I don't see the fundamental difference between custom (data) events and > messages. > > But if somebody has an example for something what can't be done with an event > and can be done with the message bus or some guideline when to use which this > would be useful. >

Re: [qooxdoo-devel] SVG wrapper - worth a contrib?

2010-06-28 Thread Marc Puts
On 06/28/2010 10:01 AM, Andreas Ecker wrote: > Hi Derrell, > > thanks for bringing your SSVG into attention. It could indeed become an > unifying layer on top of different renderers (currently Walter Zorn, but > later maybe also SVG, Canvas, etc.). > > Like Marc said, I'd also suggest to create an

Re: [qooxdoo-devel] textarea backgroundColor not filling.

2010-06-28 Thread jeff
Excellent. Thanks. On Mon, 2010-06-28 at 11:42 +0200, Alexander Steitz wrote: > Hi Jeff, > > Am 28.06.2010 04:10, schrieb jeff: > > Trying to fill a textarea widget backgroundColor and its leaving a strip > > at the top which not colored correctly - leaving it white. > > > > Anyone seen this and

Re: [qooxdoo-devel] textarea backgroundColor not filling.

2010-06-28 Thread Alexander Steitz
Hi Jeff, Am 28.06.2010 04:10, schrieb jeff: > Trying to fill a textarea widget backgroundColor and its leaving a strip > at the top which not colored correctly - leaving it white. > > Anyone seen this and/or have a solution ? > On firefox 3.0 on linux . > > var learningobject = new qx.ui.form.Text

[qooxdoo-devel] problems with flexing (layout breaks)

2010-06-28 Thread Andreas G.
hello there! im trying to find out why this happens: http://demo.qooxdoo.org/current/playground/#%7B%22code%22%3A%20%22%250Avar%2520createRow%2520%253D%2520function%28%2520children%2520%29%250A%257B%250A%2520%2520var%2520row%2520%253D%2520new%2520qx.ui.container.Composite%28%2520new%2520qx.ui.la

Re: [qooxdoo-devel] problems with flexing (layout breaks)

2010-06-28 Thread Andreas G.
problem solved using {width: "x%"} instead of flexing. -- View this message in context: http://qooxdoo.678.n2.nabble.com/problems-with-flexing-layout-breaks-tp5229923p5229948.html Sent from the qooxdoo mailing list archive at Nabble.com. -

Re: [qooxdoo-devel] Hello from a newbie.

2010-06-28 Thread thron7
> 1. How do I do async updates back to the qx client? Or do I have to > implement up a client driven polling mechanism? Yes. As there is no reversing of client - server roles in HTTP, if you want to implement server-driven changes, the client either has to send a request for updates periodiacally

Re: [qooxdoo-devel] SVG wrapper - worth a contrib?

2010-06-28 Thread Andreas Ecker
Hi Derrell, thanks for bringing your SSVG into attention. It could indeed become an unifying layer on top of different renderers (currently Walter Zorn, but later maybe also SVG, Canvas, etc.). Like Marc said, I'd also suggest to create an independent SVG wrapper to get the most out of the speci

Re: [qooxdoo-devel] SVG wrapper - worth a contrib?

2010-06-28 Thread Andreas Ecker
Hi Marc, your SVG wrapper looks really cool. Nice job! :-) Thanks for considering to contribute it. I also just contacted you directly to get you started with a project in qooxdoo-contrib, which would indeed be an excellent addition. Bye, Andreas -- Andreas Ecker Project Lead http://qooxdoo.o

Re: [qooxdoo-devel] Generator - idea for size and speed optimization

2010-06-28 Thread Petr Kobalíček
I will, probably tomorrow, I'm not home and I haven't bugzilla password here:) On Thu, Jun 24, 2010 at 2:01 PM, thron7 wrote: > Petr, > > thanks, please add your thoughts to existing bug#2569. They'll fit there > nicely. > > T. > > On 06/24/2010 10:26 AM, Petr Kobalíček wrote: >> Hi devs, >> >> I

Re: [qooxdoo-devel] elaborate GUI

2010-06-28 Thread thron7
> PS/off topic: the only place where I found an example of an event > declaration was in the framework classes. Maybe custom events would > benefit from a page in the manual or some example in the demo > browser. > Please open a bug for this. T.

Re: [qooxdoo-devel] SVG wrapper - worth a contrib?

2010-06-28 Thread Marc Puts
On 06/25/2010 04:30 PM, Derrell Lipman wrote: > Marc, this looks nice. We have a contrib that is intended to provide > scalable vector graphics capabilities in a browser-independent > fashion, using whatever is the most favorable rendering engine that is > supported. I haven't worked on it for a

Re: [qooxdoo-devel] Tree - setModelSelection problem

2010-06-28 Thread Christian Hagendorn
Hi Sid, that's a bug, could you please open a bug report for that issue. Thanks, Chris Am 25.06.2010 23:54, schrieb sid_curious: > Hi, > > I'm using a tree and I saw that setModelSelection method works only for > visible tree items or folders. is this a bug or is how is is supposed to > work? >