[qooxdoo-devel] getting started with UploadWidget

2009-04-15 Thread Marta Smith
Hi Qooxdoo gurus! I consider myself relatively new to qooxdoo. I am trying to use the contrib UploadWidget, and read usage documentation on contribution classes. I decided to take advantage of the automatic update feature which the online version has to offer versus manual download. I have the fol

Re: [qooxdoo-devel] TextField maxLength bug?

2009-04-15 Thread Jim Hunter
Bug entered, #2241 example code provided Jim On Wed, Apr 15, 2009 at 5:05 PM, Jim Hunter wrote: > According to the documentation, the default value for maxLength of a > textField is null. Now, I would read that as the default value means > you can enter as much text as you want. Kind of like m

[qooxdoo-devel] TextField maxLength bug?

2009-04-15 Thread Jim Hunter
According to the documentation, the default value for maxLength of a textField is null. Now, I would read that as the default value means you can enter as much text as you want. Kind of like most Windows languages where setting the maxLength to 0 means you can enter as much as you want. But... when

Re: [qooxdoo-devel] howto start with layout

2009-04-15 Thread sNIk
snikkers, I would suggest you give the online documentation a try, as I think it will answer this basic question and other similar questions you might have getting started... http://qooxdoo.org/documentation/0.8 There are a couple of ways to implement Qooxdoo in a webpage, and the manual g

Re: [qooxdoo-devel] Problems creating a new Shadow decorator.

2009-04-15 Thread MootCycle
Yeah, I was able to clear up all the errors using asset hints. Is this a case where adding "Check your asset hints" to the warning message would be helpful? As for the style property, I was just copying the structure from the qx.theme.modern.Decoration file. Everything seems to be working properl

Re: [qooxdoo-devel] Keep window from getting click event

2009-04-15 Thread tsmiller
Alex, I think that sending the main window to the back would work, but it would cause more problems than it would solve. My application is a single page application that uses about a dozen main windows in which the end user can get work done. There can be multiple instances of most of these wi

Re: [qooxdoo-devel] Mixing Inline and Standalone?

2009-04-15 Thread Vincent Bernardi
On 15 avr. 09, at 15:59, Alexander Back wrote: > The problem is that the DOM element of the "qx.ui.root.Page" widget > has the > size of 0x0 pixel to not interrupt with the page flow. So you can't > use this > widget to listen to resize events. > However the following code does help > > --snip-

Re: [qooxdoo-devel] this.capture() - Disable capture of mouse[over|out]?

2009-04-15 Thread Matthew Gregory
Thanks, I was planning on creating a patch that overrides the canDispatchEvent so it looks something like this: canDispatchEvent : function(target, event, type) { return this.base(arguments, target, event, type) && type !== "mouseover" && type !== "mouseout" } I would prefere no

Re: [qooxdoo-devel] this.capture() - Disable capture of mouse[over|out]?

2009-04-15 Thread Alexander Back
Hi Matt, On Wednesday 15 April 2009 Matthew Gregory wrote: > Hi All, > I'm currently working on a ribbon-bar like widget which works really > well atm. Currently if you hold down one button down and hover over a > different button it won't get highlighted (even if you let go). This > isn't what we

[qooxdoo-devel] table.model.Remote doesn't reload

2009-04-15 Thread Thomas Bückemeyer
Hello, I have a qx.ui.table.model.Remote with the following code: schnipp-- _loadRowData : function(firstRow, lastRow, suchtext, dateStart, dateEnd) { this.debug("readdata"); if (!suchtext) {suchtext = "";} // Call the backend service (example)

Re: [qooxdoo-devel] Truly trasparent

2009-04-15 Thread Alexander Back
Hi Massimo, On Wednesday 15 April 2009 mapp...@libero.it wrote: > Hi, > I am trying to get trasparent popup, but the code > > popupWait. > setBackgroundColor("transparent"); > > does not provide a true trasparency. It is > like a dark glass. > Is it possible to optain in such a way? Yes it is :)

Re: [qooxdoo-devel] Mixing Inline and Standalone?

2009-04-15 Thread Alexander Back
Hi Vincent, On Wednesday 15 April 2009 Vincent Bernardi wrote: > On 15 avr. 09, at 10:01, Alexander Back wrote: > > BTW: you can change the layout by calling "setLayout" at the root > > widget e.g. > > to change it to a layout which supports "flex". > > setLayout works for qx.ui.root.Inline but no

Re: [qooxdoo-devel] keyboard events are slow

2009-04-15 Thread Petr Kobalíček
Hi Jonathan, it's quite long time and I experienced this in my application. I can't reproduce this in simple app. I think that it's dependent to complexity of the application and it's dependent to count of created widgets. I think that you should close the issue and I will reopen it if I can repr

[qooxdoo-devel] Truly trasparent

2009-04-15 Thread mapp...@libero.it
Hi, I am trying to get trasparent popup, but the code popupWait. setBackgroundColor("transparent"); does not provide a true trasparency. It is like a dark glass. Is it possible to optain in such a way? Thanks in advance. Massimo ---

Re: [qooxdoo-devel] Strange beaviour...

2009-04-15 Thread Derrell Lipman
On Wed, Apr 15, 2009 at 7:17 AM, A.Yerenkow wrote: > On 15.04.2009 14:07, Derrell Lipman wrote: > > On Wed, Apr 15, 2009 at 6:19 AM, A.Yerenkow wrote: > >> Hello Guys, would someone explain me one thing: >> >> Is properties static? because it seems so for me. >> > > Properties are not static, b

Re: [qooxdoo-devel] GUI/Editor

2009-04-15 Thread Burak Arslan
thron7 wrote: Burak Arslan wrote: Mehrdad Arshad Rad wrote: Hi All, I'm new in qooxdoo framework and I need you advice, now I have a project which based on qooxdoo framework , I'm going to change it so I download qooxdoo 0.8 but it seems I need a GUI for editing, where I should down

Re: [qooxdoo-devel] Strange beaviour...

2009-04-15 Thread A.Yerenkow
On 15.04.2009 14:07, Derrell Lipman wrote: On Wed, Apr 15, 2009 at 6:19 AM, A.Yerenkow > wrote: Hello Guys, would someone explain me one thing: Is properties static? because it seems so for me. Properties are not static, but objects are stored by reference. If

Re: [qooxdoo-devel] Strange beaviour...

2009-04-15 Thread Alexander Back
Hi, the answer is that you have to initialize your property on instance level using the "initFields" method (in your case) in your constructor. This way the property in *not* shared between the instances. See http://qooxdoo.org/documentation/0.8/defining_properties#defining_an_init_v

Re: [qooxdoo-devel] Mixing Inline and Standalone?

2009-04-15 Thread Vincent Bernardi
On 15 avr. 09, at 10:01, Alexander Back wrote: > BTW: you can change the layout by calling "setLayout" at the root > widget e.g. > to change it to a layout which supports "flex". setLayout works for qx.ui.root.Inline but not for qx.ui.root.Page which is the compulsory root for my widgets, sinc

Re: [qooxdoo-devel] Strange beaviour...

2009-04-15 Thread Derrell Lipman
On Wed, Apr 15, 2009 at 6:19 AM, A.Yerenkow wrote: > Hello Guys, would someone explain me one thing: > > Is properties static? because it seems so for me. > Properties are not static, but objects are stored by reference. If you need an object or an array value of a property, set the initial pro

[qooxdoo-devel] this.capture() - Disable capture of mouse[over|out]?

2009-04-15 Thread Matthew Gregory
Hi All, I'm currently working on a ribbon-bar like widget which works really well atm. Currently if you hold down one button down and hover over a different button it won't get highlighted (even if you let go). This isn't what we want. I can get the behaviour I want by preventing qx.event.dispa

Re: [qooxdoo-devel] Strange beaviour...

2009-04-15 Thread A.Yerenkow
Hello Guys, would someone explain me one thing: Is properties static? because it seems so for me. Here I have class definition: qx.Class.define("my.vo.TestVO", { extend : qx.core.Object, properties : { fields : {init: new Array()} } }); Here I have test case:

Re: [qooxdoo-devel] keyboard events are slow

2009-04-15 Thread Jonathan Weiß
Hi Petr, could you create a little sample and attach it to bug 1705 [1]? I was not able to reproduce this issue with Firefox 3 and Safari 4 on OS X. Cheers, Jonathan [1] http://bugzilla.qooxdoo.org/show_bug.cgi?id=1705 I try to more describe my point of event handling. For example try any q

Re: [qooxdoo-devel] Keep window from getting click event

2009-04-15 Thread Alexander Back
Hi Tom, just to give it a try ... don't know if it's working out for you. Did you try to use the "sendToBack" method of the window manager to send the main window to the back once one of the "child" window is opened. Technically it does re-sort the stack of the windows and the window at top of

Re: [qooxdoo-devel] generating XSD schema from API data

2009-04-15 Thread Siarhei Barysiuk
Will do, no problem. S. On Wed, Apr 15, 2009 at 11:23 AM, thron7 wrote: > > > Siarhei Barysiuk wrote: >> Hi Thomas, >> >> There was an option in 0.7 version but not in 0.8 AFAIK. I discovered >> XSL files which process XML in tool/data/apidoc and description of >> -api-documentation-xml-file opt

Re: [qooxdoo-devel] Patching a mixin

2009-04-15 Thread Matthew Gregory
Thanks T, thron7 wrote: > Mh, have you tried qx.Class.patch(qx.ui.core.MExecutable, > custom.patch.MExecutable)?! That would be my first test to see if > patching mixins is possible. I tried this and it gave me an error that proto was undefined. I guess this is because mixins are stored diffe

Re: [qooxdoo-devel] generating XSD schema from API data

2009-04-15 Thread thron7
Siarhei Barysiuk wrote: > Hi Thomas, > > There was an option in 0.7 version but not in 0.8 AFAIK. I discovered > XSL files which process XML in tool/data/apidoc and description of > -api-documentation-xml-file option for the generator, but actually > couldn't find any usages of it in the project.

Re: [qooxdoo-devel] Patching a mixin

2009-04-15 Thread thron7
Matthew Gregory wrote: > BTW: > I've come up with this work around which works OK but would like to know > if a more elegant solution exists. > > > > main : function() > { >qx.Class.include(qx.ui.core.Widget, custom.patch.MExecutable); > } > Mh, have you tried qx.Class.patch(qx.ui.core.M

Re: [qooxdoo-devel] Mixing Inline and Standalone?

2009-04-15 Thread Alexander Back
Hi Vincent, On Tuesday 14 April 2009 Vincent Bernardi wrote: > I want to display the HTML content behind my widgets, and therefore I > have to build an qx.application.Inline. My root is then a > qx.ui.root.Page, which in turns only acepts qx.ui.layout.Basic as a > layout. And this layout doesn't a

Re: [qooxdoo-devel] generating XSD schema from API data

2009-04-15 Thread Siarhei Barysiuk
Hi Thomas, There was an option in 0.7 version but not in 0.8 AFAIK. I discovered XSL files which process XML in tool/data/apidoc and description of -api-documentation-xml-file option for the generator, but actually couldn't find any usages of it in the project. I took a look at source of ApiLoade

Re: [qooxdoo-devel] GUI/Editor

2009-04-15 Thread thron7
Burak Arslan wrote: > Mehrdad Arshad Rad wrote: > >> Hi All, >> >> I'm new in qooxdoo framework and I need you advice, now I have a >> project which based on qooxdoo framework , I'm going to change it so I >> download qooxdoo 0.8 but it seems I need a GUI for editing, where I >> should downloa

Re: [qooxdoo-devel] Problems creating a new Shadow decorator.

2009-04-15 Thread thron7
Dan, I believe you missed the #asset hint in your theme file. In test082.theme.Decoration add /* #asset(test082/decoration/highlight-red/highlight-red.png) */ near the top. This is necessary to "register" the image. I also think the image path should be changed to baseImage : "test082/de