Re: [qooxdoo-devel] qx.ui.tree.Tree as IForm request

2010-05-04 Thread MartinWittemann
Hi, I am not sure what the reason was we left the tree out of the form items. I think the main reason was I could not figure out why a tree should be a form item at all. But as you said, you have a valid use case. Could you share your thought on that use case with us? Regards, Martin -- View

Re: [qooxdoo-devel] Documentation

2010-05-04 Thread Jean-Baptiste BRIAUD -- Novlog
On May 4, 2010, at 07:50 , MartinWittemann wrote: Hi Chris, as you might have seen on our roadmap [1], we want to check the possibilities of moving the manual to the repository. With that, you can always check out the manual to view it offline. Regards, Martin [1]

Re: [qooxdoo-devel] Documentation

2010-05-04 Thread MartinWittemann
Hello JBB, we have already opened a issue report for that [1]. One goal for me is to have a commonly used structuring format which we can use to create multiple forms of output like PDF, HTML, ... Some prestudies using Sphinx [2] showed some good results. But as the bug and the roadmap says,

[qooxdoo-devel] FolderOpenButton replace Modern to Classic pixelproblems

2010-05-04 Thread danovics
Just a little problem, but I couldn't find the solution. I use modern theme in my app. I'd like to change the tree's folderOpenButton from the little arrow to +/-. I extended the appearance.js and override the tree-item/open section with the new images. Everithing is ok, except that there is a

[qooxdoo-devel] Table header column update not working

2010-05-04 Thread Stefan Andersson
after doing this: this.__tableModel.setColumns([ this.tr(name), this.tr(read), this.tr(write) ]); the table header is not automatically updated. I think it should! BUG? Stefan

Re: [qooxdoo-devel] qx.ui.tree.Tree as IForm request

2010-05-04 Thread Guilherme Aiolfi
There are not much to talk about. It's just a Category field where the user has to select categories that will be related to the record being edited. It's a List Field with hierarchical branches. I can think in a lot of use cases for that. Another example: imagine that you create a form

Re: [qooxdoo-devel] qx.ui.tree.Tree as IForm request

2010-05-04 Thread MartinWittemann
Hm, those are all valid use cases but on in the classic form way. But why not, just open up a bug report and I'll take care of it. Regards, Martin -- View this message in context: http://qooxdoo.678.n2.nabble.com/qx-ui-tree-Tree-as-IForm-request-tp5000467p5002994.html Sent from the qooxdoo

Re: [qooxdoo-devel] qx.ui.tree.Tree as IForm request

2010-05-04 Thread Guilherme Aiolfi
How would it be the modern form way for those use cases? Bug #3677 On Tue, May 4, 2010 at 9:15 AM, MartinWittemann martin.wittem...@1und1.dewrote: Hm, those are all valid use cases but on in the classic form way. But why not, just open up a bug report and I'll take care of it. Regards,

Re: [qooxdoo-devel] qx.ui.tree.Tree as IForm request

2010-05-04 Thread MartinWittemann
Hi, I thought of a form like the HTML form without a tree. ;) Regards, Martin -- View this message in context: http://qooxdoo.678.n2.nabble.com/qx-ui-tree-Tree-as-IForm-request-tp5000467p5003115.html Sent from the qooxdoo mailing list archive at Nabble.com.

[qooxdoo-devel] textField masked input

2010-05-04 Thread swojtek
Hello! Do you by chance know how to achieve a masked textField? What I want to do is to make a text field which will serve as input for registration key of known format (like ---). I want those - to be automatically added (or to be displayed all the time). What I managed to

[qooxdoo-devel] little problem migrating SelectBox 1.0.1 - 1.1

2010-05-04 Thread rsantiagopaz
Hi. Try this example in the Playground. In the debugger I get multiple errors/warnings like: 462296 qx.ui.form.SelectBox[538]: Setting the selection on disabled 'qx.ui.form.SelectBox' is deprecated: The current behavior will change from doing nothing to selecting the given items. I can't

Re: [qooxdoo-devel] little problem migrating SelectBox 1.0.1 - 1.1

2010-05-04 Thread rsantiagopaz
Sorry. Now I find previous thread with the same topic. Forget this. -- View this message in context: http://qooxdoo.678.n2.nabble.com/little-problem-migrating-SelectBox-1-0-1-1-1-tp5003541p5003585.html Sent from the qooxdoo mailing list archive at Nabble.com.

[qooxdoo-devel] Masked textField

2010-05-04 Thread Wojciech Sieczkowski
Hello! Do you have an idea how to achieve a masked textField? What I want to do is to make a text field which will serve as input for registration key of known format (like ---). I want those - to be automatically added (or to be displayed all the time). What I managed to

[qooxdoo-devel] How to know which qx objects can be added to my other qx object?

2010-05-04 Thread Steve Jobs
Hi all, Obviously, we cannot add all of the qx object to all other qx objects. for example, we cannot add table to toolbar or a toolbar to menu etc. These may be stupid examples but the point is, there are sensibly some restrictions. How can I get information about which of the qx objects can be

Re: [qooxdoo-devel] Hide deprecation warnings

2010-05-04 Thread panyasan
Ok thanks. In qcl, I am using the concept of filters to control what is being logged or not: http://qooxdoo.org/contrib/project/qcl/logging That might be an inspiration for futures updates of the logging system. Cheers, Christian -- View this message in context:

Re: [qooxdoo-devel] Masked textField

2010-05-04 Thread Fink, Andreas
Hi, maybe the following playground code dows what you want: http://tinyurl.com/33a6kbr Regards, Andreas -Ursprüngliche Nachricht- Von: Wojciech Sieczkowski [mailto:swoj...@asn.pl] Gesendet: Dienstag, 4. Mai 2010 16:21 An: qooxdoo-devel@lists.sourceforge.net Betreff: [qooxdoo-devel]

[qooxdoo-devel] build only - console.Controller is not a constructor

2010-05-04 Thread AndyWhite
I see that there are other 'is not a constructor' topics out here, but they do not seem related to my problem. For me the source-all generates correctly and runs well (I've been working on this for a couple of weeks, so I'm fairly sure source is working correctly). For quite some time the build

Re: [qooxdoo-devel] Masked textField

2010-05-04 Thread Guilherme Aiolfi
I tested it in chrome 5 dev and it doesn't work as well as it does in firefox. The caret is not in the same position after inserting the - char. On Tue, May 4, 2010 at 3:28 PM, Fink, Andreas andreas.f...@afb24.comwrote: Hi, maybe the following playground code dows what you want:

[qooxdoo-devel] Problem with refreshing remote table.

2010-05-04 Thread Nick Watkins
I think I need help from someone with intimate knowledge of the table widget. I started having problems as soon as I upgraded from 1.0.1 to 1.1. I'm sure it's something I'm doing wrong, or supposed to be doing a different way. Here's a basic rundown: our application uses the table widget to

[qooxdoo-devel] Minimal width of a TextField

2010-05-04 Thread Joachim Baran
Hello, I would like to adjust the width of a TextField so that no space is wasted, but I am having trouble to figure out the actual width required by the TextField's contents. I found a solution for Qooxdoo 0.6 in the FAQ, namely: var neededWidth = new

[qooxdoo-devel] MeetAndSpeak - Qooxdoo based chat tool

2010-05-04 Thread Ilkka Oksanen
Hi, I'm in progress of launching Qooxdoo based web application and thought that people in this mailing list might be interested. It's yet another example what Qooxdoo is capable of. This video gives an overview of the service in question: http://meetandspeak.com/tour.html There is also a group

[qooxdoo-devel] separating the cache from the table

2010-05-04 Thread Burak Arslan
hi, i think separating the object cache of the remote table model would be a nice feature that will relieve the load on the data source and improve memory usage. in our case, we sometimes have to show the same data in two places, or at different times, or inside different widgets, etc. we also

Re: [qooxdoo-devel] separating the cache from the table

2010-05-04 Thread Derrell Lipman
On Tue, May 4, 2010 at 17:43, Burak Arslan burak.ars...@arskom.com.trwrote: hi, i think separating the object cache of the remote table model would be a nice feature that will relieve the load on the data source and improve memory usage. in our case, we sometimes have to show the same data

[qooxdoo-devel] CSS declaration syntax error since updating to 1.1

2010-05-04 Thread Werner Thie
Hi all I see the following error (Opera/Dragonfly, Firefox/Firebug, etc) since upgrading to qooxdoo 1.1 Opera/Dragonfly Declaration syntax error margin: 0px; padding 0px; overflow: hidden; height: 100%; width: 100%; -^ Firefox/Firebug Expected ':' but found '0px'.