Re: [qooxdoo-devel] New contrib: jqxplot

2009-10-07 Thread Fritz Zaucker
Hi, just found this: http://g.raphaeljs.com/ Cheers, Fritz On Thu, 8 Oct 2009, Fritz Zaucker wrote: Hi Petr, Skar, yes, looks pretty cool. Could indeed be a good starting point for a higher-level library. Thanks for the hint, Fritz On Thu, 8 Oct 2009, skar wrote: Petr Kobalí?ek

Re: [qooxdoo-devel] qooxdoo "IDE" -- Request for Comments

2009-10-07 Thread Petr Kobalíček
Hi, I read all comments and for me the most time consuming task is to write forms with correct databinding. In fact I can live without RAD tools like form designers, because I can write form very quickly. I wrote small framework for me (can't release, it's very connected with our app) that solves

Re: [qooxdoo-devel] New contrib: jqxplot

2009-10-07 Thread Fritz Zaucker
Hi Petr, Skar, yes, looks pretty cool. Could indeed be a good starting point for a higher-level library. Thanks for the hint, Fritz On Thu, 8 Oct 2009, skar wrote: Petr Kobalí?ek wrote: Hi Fritz, BTW: Do you know this library? http://raphaeljs.com/ The demos are great! Yup Petr, the demos

Re: [qooxdoo-devel] Blueprint JSON Structure Discussion

2009-10-07 Thread MootCycle
I did look at your prototype, and it is pretty clear to me that we're working along similar lines. I am hoping to contribute to the discussion both directly and through development of Blueprint. Since we're already using Blueprint in an internal product, I do have an interest in developing bluepri

Re: [qooxdoo-devel] New contrib: jqxplot

2009-10-07 Thread skar
Petr Kobalíček wrote: > Hi Fritz, > > BTW: Do you know this library? http://raphaeljs.com/ > > The demos are great! > Yup Petr, the demos look cool. It's too generic though, being a vector and all. A charting library on top of this would be awesome :) JqPlot is good too, but this one looks eve

Re: [qooxdoo-devel] New contrib: jqxplot

2009-10-07 Thread Petr Kobalíček
Hi Fritz, BTW: Do you know this library? http://raphaeljs.com/ The demos are great! Best regards - Petr Kobalicek 2009/10/6 Fritz Zaucker : > Thanks ... hopefully more to come if the customers want more charts ... > > Cheers, > Fritz > > On Tue, 6 Oct 2009, Christian Schm

Re: [qooxdoo-devel] qooxdoo "IDE" -- Request for Comments

2009-10-07 Thread skar
Derrell Lipman wrote: >- View "running" qooxdoo application as it's being built, allowing for >incremental development >- Show dynamically-generated qooxdoo source code (nicely color coded and >formatted, of course) >- Save work in progress, and come back later to edit further >

Re: [qooxdoo-devel] Blueprint JSON Structure Discussion

2009-10-07 Thread MootCycle
Yeah, type can probably be gotten rid of. The recursion can happen or not depending on the existance of the contents/children node. That wouldn't be a difficult change to make. Also, I do prefer children to contents. I'm not sure how I feel about an events key. The blueprint scripts node already

Re: [qooxdoo-devel] Styling tabview

2009-10-07 Thread monika.falk
Hi Chris I am not sure if attachments are not stripped off as I do not receive any attachment with your email. S pozdravem / Best regards, Monika Falk, Software Specialist Tieto Message: 4 Date: Wed, 07 Oct 2009 15:11:35 +0200 From: Christian Schmidt Subject: Re: [qooxdoo-devel] Styling ta

Re: [qooxdoo-devel] focus on row upon data load in a table

2009-10-07 Thread skar
Gene Amtower wrote: > Yeah, I make this same mistake from time to time when I *know* which way > it's supposed to go! I think Row-Column is the logical order, but > sometimes a method makes more sense the other way, especially when the > column parameter is required and the row parameter is option

Re: [qooxdoo-devel] nested objects inside (qx.ui.table's) remote models

2009-10-07 Thread Burak Arslan
thron7 wrote On 07-10-2009 17:20: > Hi Burak, > > look, don't just dump your patch on the mailing list. It'll get lost > here. Open a bug for it, and attach your patch there. This will make > sure that "it's there" :). > > sure. i prefer not to do it unless you ask me to, in an effort to keep

Re: [qooxdoo-devel] Javascript Scoping and Asynchronous Requests

2009-10-07 Thread aditya siram
Thanks for the reply Matt and Axel - those solutions worked. However I do have a further question. I wanted to take that function that creates a callback and move it to a static utility class. class Utility: type : 'static' members : makeCallback(func, context) { var _fun

Re: [qooxdoo-devel] qooxdoo "IDE" -- Request for Comments

2009-10-07 Thread dmbaggett
This sounds very cool, but I expect this will take a very, very long time to write. I agree with others that it might be best to start from Eclipse and build a QooxDoo RAD system on top of it. I also concur with those who've said that the most time-consuming thing in QooxDoo right now is forms. A

Re: [qooxdoo-devel] Scroll into view problems

2009-10-07 Thread Fritz Zaucker
Did you try this.addListener("resize", this.center, this); or perhaps this.addListener("appear", this.center, this); in the constructor? I am not sure how/if it will work in a form higher than the screen, but give it a try ... Cheers, Fritz On Wed, 7 Oct 2009, John Spackman w

Re: [qooxdoo-devel] qooxdoo "IDE" -- Request for Comments

2009-10-07 Thread Bruce Bockius
see below... For reference I've been developing in Qooxdoo since 0.6, and use it for several projects for the US Dept of Defense. From: Derrell Lipman [mailto:derrell.lip...@unwireduniverse.com] 1. What do you find to be your most time-consuming or tedious ta

Re: [qooxdoo-devel] re trieve xml from a php-file

2009-10-07 Thread sikd
thron7-2 wrote: > > Ok, so could you switch to asynchronous calls, as this is the > recommended way of using them, and then "alert(xmlDoc)" in your > completed handler, to see what is actually delivered from the server. > You might also want to check your Firebug's net tab, to see request and

Re: [qooxdoo-devel] focus on row upon data load in a table

2009-10-07 Thread Gene Amtower
Yeah, I make this same mistake from time to time when I *know* which way it's supposed to go! I think Row-Column is the logical order, but sometimes a method makes more sense the other way, especially when the column parameter is required and the row parameter is optional. No worries, my friend.

Re: [qooxdoo-devel] qooxdoo "IDE" -- Request for Comments

2009-10-07 Thread Gene Amtower
Cool idea, Derrell. See my comments at the bottom... On Wed, 2009-10-07 at 12:24 -0400, Derrell Lipman wrote: > For a many months, I've considered what an advanced, easy-to-use > development environment for qooxdoo applications would look like. A > few weeks ago, just before he published it as a

Re: [qooxdoo-devel] re trieve xml from a php-file

2009-10-07 Thread thron7
sikd wrote: > First of all, I'm really sorry about the duplicated mail, but I don't really > understand the working of this mailing list. > > I tried with async ajax calls too, but none of them worked. > Ok, so could you switch to asynchronous calls, as this is the recommended way of using t

Re: [qooxdoo-devel] focus on row upon data load in a table

2009-10-07 Thread thron7
Skar, no bother, it happens to all of us :). Glad it is resolved, anyway. T. skar wrote: > thron7 wrote: > >> Derrell, can you comment on this?! >> >> > Thanks for the shove, Thomas. I made a mistake. I set the focus to (0,2) > thinking it was (row,col) while in fact it was (col,row).

Re: [qooxdoo-devel] qooxdoo "IDE" -- Request for Comments

2009-10-07 Thread Jean-Baptiste BRIAUD -- Novlog
On Oct 7, 2009, at 18:24 , Derrell Lipman wrote: For a many months, I've considered what an advanced, easy-to-use development environment for qooxdoo applications would look like. A few weeks ago, just before he published it as a contrib, Dan Hummon demonstrated to me his Tartan Blueprint

[qooxdoo-devel] Scroll into view problems

2009-10-07 Thread John Spackman
Hi, I have a very long form that needs to popup various modal dialogs that are classes derived from Window - the form is so long that it is easy for the dialog to appear off screen and so there is an event handler for each window that hooks onto "appear" with this code to scroll the window into

Re: [qooxdoo-devel] re trieve xml from a php-file

2009-10-07 Thread sikd
First of all, I'm really sorry about the duplicated mail, but I don't really understand the working of this mailing list. I tried with async ajax calls too, but none of them worked. thron7-2 wrote: > > I responded to your other mail with the same content. -T. > > sikd wrote: >> I'm a little c

Re: [qooxdoo-devel] focus on row upon data load in a table

2009-10-07 Thread skar
thron7 wrote: > Derrell, can you comment on this?! > Thanks for the shove, Thomas. I made a mistake. I set the focus to (0,2) thinking it was (row,col) while in fact it was (col,row). And in my case col 0 wasn't editable. Now it's working fine. I reached till line 1668 of pane/Scroller.js con

[qooxdoo-devel] qooxdoo "IDE" -- Request for Comments

2009-10-07 Thread Derrell Lipman
For a many months, I've considered what an advanced, easy-to-use development environment for qooxdoo applications would look like. A few weeks ago, just before he published it as a contrib, Dan Hummon demonstrated to me his Tartan Blueprint Designer, and he and I discussed some of the ideas I've be

[qooxdoo-devel] Textarea Issue

2009-10-07 Thread Ingrid Lohmann
Hi all, I implemented a textarea in my application, which works well under the firefox browser, i.e. if it contains large amounts of content, scrolbars automatically are shown. If I check the same application with the microsoft internet explorer, the scrolbars are missing. Can somebody help me

Re: [qooxdoo-devel] focus on row upon data load in a table

2009-10-07 Thread thron7
Derrell, can you comment on this?! T. skar wrote: > skar wrote: > >> Hi, >> >> How do I set focus on a particular cell(row,col) of a table, so that a >> simple "enter" key press makes it editable? >> >> >> The methods I call are: >> >> >>> table.setShowCellFocusIndicator(true); >>> table

Re: [qooxdoo-devel] labeling a form using atoms?

2009-10-07 Thread Daniel Wagner
Thanks for the praise! :) I guess this is a good time to mention that any contribution from enthusiastic users such as yourself is highly appreciated, whether it's patches, bug reports, documentation or even spelling/grammar corrections for the wiki or the class comments. Regards, Daniel phi

Re: [qooxdoo-devel] Virtual Mice solve a maze

2009-10-07 Thread Derrell Lipman
On Wed, Oct 7, 2009 at 10:16, thron7 wrote: > > > Derrell Lipman wrote: > > On Wed, Oct 7, 2009 at 09:37, thron7 > > wrote: > > > > Derrell, is there any activity to restore working FSM demos? Would > you > > open a bug for it, at least to clarify st

Re: [qooxdoo-devel] IE 6 weirdness when adding table.Simple()

2009-10-07 Thread Ken MacDonald
Hi, sorry, I was doing some shorthand. By "app/js" I really meant "application/javascript" as opposed to "application/x-javascript". Once we get our Apache environment a bit configured, we'll try setting it to return x-javascript and see if the problem reappears. Might also give IIS a try at some

Re: [qooxdoo-devel] IE 6 weirdness when adding table.Simple()

2009-10-07 Thread Gene Amtower
Interestingly, the application/x-javascript mime type is not defined by iana.org, which can be seen in their documentation at http://www.iana.org/assignments/media-types/application/ However, app/js is also not defined - not even the app/ prefix is defined. Also of note is that text/javascript an

Re: [qooxdoo-devel] IE 6 weirdness when adding table.Simple()

2009-10-07 Thread Gene Amtower
Ken, I'm guessing that you were using IIS on your XP laptop. I don't use IIS in any capacity (for my own sanity), but I can tell you that Apache has a MIME magic module (assuming it's loaded in the Apache configuration, which it is by default) that controls the header that gets sent for various f

Re: [qooxdoo-devel] IE 6 weirdness when adding table.Simple()

2009-10-07 Thread Ken MacDonald
Running twisted on the dev machine. Ken On Wed, Oct 7, 2009 at 11:07 AM, thron7 wrote: > > > headers being passed back from my dev server when .js was > > served, and then at the headers from the Apache server, and found the > > "Content-Type" was "application/javascript" on Apache, > > "applicat

Re: [qooxdoo-devel] IE 6 weirdness when adding table.Simple()

2009-10-07 Thread thron7
> headers being passed back from my dev server when .js was > served, and then at the headers from the Apache server, and found the > "Content-Type" was "application/javascript" on Apache, > "application/*x-*javascript" from my dev server where it fails. What's your dev server? T. -

Re: [qooxdoo-devel] IE 6 weirdness when adding table.Simple()

2009-10-07 Thread Ken MacDonald
Thanks for that, Gene! Oh well. OK, we do have another data point in the IE6 mystery: we moved the app to a server running Apache, and it seems to work fine with IE 6 there. We looked at the headers being passed back from my dev server when .js was served, and then at the headers from the Apache se

Re: [qooxdoo-devel] labeling a form using atoms?

2009-10-07 Thread phill54
Thank you very much, Daniel! I implemented your solution and it worked! =) I'm very enthusiastic about the qooxdoo framework,the developer tools that come with it and you support! It's one of the best documented/illustrated products I've ever worked with! I love it! :clap: Best Regards Daniel

Re: [qooxdoo-devel] re trieve xml from a php-file

2009-10-07 Thread thron7
I responded to your other mail with the same content. -T. sikd wrote: > I'm a little confused. Trying to find out the solution for this, but just > couldn't for last 2 days. > Any help would be appreciated a lot. > > So, I would like to retrieve throu a qooxdoo's ajax request an xml-file, > which

Re: [qooxdoo-devel] qx.ui.container.Scroll: ARGH!

2009-10-07 Thread dmbaggett
My queue of QooxDoo-related tasks is getting quite long, but I will try to do that. :) Dave thron7-2 wrote: > > Dave, it would be very helpful if you provided us with a skeleton app > that reproduces the problems, maybe showing different scenrios with > different properties coming into play.

Re: [qooxdoo-devel] qx.ui.container.Scroll: ARGH!

2009-10-07 Thread dmbaggett
I will try that -- thanks. Also, thanks for the explanation of allowStretch. I did not understand that it was just a property group. That helps a lot. :) Dave Fabian Jakobs wrote: > > dmbaggett schrieb: >> So I spent another 4+ hours yesterday doing battle with the Scroll >> container. >> I ju

Re: [qooxdoo-devel] nested objects inside (qx.ui.table's) remote models

2009-10-07 Thread thron7
Hi Burak, look, don't just dump your patch on the mailing list. It'll get lost here. Open a bug for it, and attach your patch there. This will make sure that "it's there" :). T. Burak Arslan wrote: > hi, > > we saw that communicating complex (nested) objects makes our life > easier in some re

Re: [qooxdoo-devel] focus on row upon data load in a table

2009-10-07 Thread skar
skar wrote: > Hi, > > How do I set focus on a particular cell(row,col) of a table, so that a > simple "enter" key press makes it editable? > > > The methods I call are: > >> table.setShowCellFocusIndicator(true); >> table.setFocusedCell(0, 0, true); With the above 2 settings and everything else at

Re: [qooxdoo-devel] Lasting shadow on effect window movement

2009-10-07 Thread Christian Schmidt
Hi Dominik, I'm not a expert in using animations, but I will do my best :-) > As far as I can see, there is only the Scale effect for resizing of > elements, which only allows percentag values. > Oh, yes this Scale effect needs percentage. > What I was thinking about was, minimizing windows,

Re: [qooxdoo-devel] Virtual Mice solve a maze

2009-10-07 Thread thron7
Derrell Lipman wrote: > On Wed, Oct 7, 2009 at 09:37, thron7 > wrote: > > Derrell, is there any activity to restore working FSM demos? Would you > open a bug for it, at least to clarify status? -T. > > > I hope at some point in the not too distant fu

Re: [qooxdoo-devel] Security implications of using rich labels

2009-10-07 Thread dmbaggett
Yes, I mean that the label contents are set by some external entity -- a user, a robot, a piece of malware, etc. :) Dave Matthew Gregory wrote: > > Just a quick question, by user genererated do you mean the user enters > some text that is stored in a database and possibly shown to other users

Re: [qooxdoo-devel] Virtual Mice solve a maze

2009-10-07 Thread Derrell Lipman
On Wed, Oct 7, 2009 at 09:37, thron7 wrote: > Derrell, is there any activity to restore working FSM demos? Would you > open a bug for it, at least to clarify status? -T. > I hope at some point in the not too distant future to restore the Virtual Mice Maze demo. It would be nice if whomever remov

Re: [qooxdoo-devel] retrieve xml from a php-file

2009-10-07 Thread thron7
Sík Dániel wrote: > I'm a little confused. Trying to find out the solution for this, but > just couldn't for last 2 days. > Any help would be appreciated a lot. > > So, I would like to retrieve throu a qooxdoo's ajax request an > xml-file, which is made dinamically on the server from a mysql >

Re: [qooxdoo-devel] Virtual Mice solve a maze

2009-10-07 Thread thron7
Derrell, is there any activity to restore working FSM demos? Would you open a bug for it, at least to clarify status? -T. Derrell Lipman wrote: > On Wed, Oct 7, 2009 at 05:01, sub > wrote: > > > What are the thoughts/plans for the Finite State Machine. > I n

Re: [qooxdoo-devel] Virtual Mice solve a maze

2009-10-07 Thread Derrell Lipman
On Wed, Oct 7, 2009 at 05:01, sub wrote: > > What are the thoughts/plans for the Finite State Machine. > I notice that part of the classes are still available in the API but no > longer available in the demobrowser. > Hi. The Virtual Mice demo for FSM made use of rendering features that changed

Re: [qooxdoo-devel] Lasting shadow on effect window movement

2009-10-07 Thread Dominik Horb
Hí Chris, thanks for your help. Now I'm a little embarassed, that I didn't find this out by myself ;-) However i've got another question, which got also something to do with effects... As far as I can see, there is only the Scale effect for resizing of elements, which only allows percentag va

Re: [qooxdoo-devel] Virtual Mice solve a maze

2009-10-07 Thread Heiko Stübner
Hi, Am Mittwoch 07 Oktober 2009 schrieb sub: > What are the thoughts/plans for the Finite State Machine. > I notice that part of the classes are still available in the API but no > longer available in the demobrowser. > > Were there any users of the FSM pattern? I like the FSM very much. For our (

Re: [qooxdoo-devel] nested objects inside (qx.ui.table's) remote models

2009-10-07 Thread Burak Arslan
Derrell Lipman wrote: > Hi Burak, > > Although I don't know how you are using your "complex objects", I can > see that in certain cases this might be useful. OTOH, I don't think > it's necessary to patch it in Remote.js. You're patching the > getValue() method, which is a trivial method. Instead

Re: [qooxdoo-devel] Styling tabview

2009-10-07 Thread Christian Schmidt
Hi Monika, I attached it "testTabView.rar" at the last e-mail. Cheers, Chris monika.f...@tieto.com schrieb: > > Thron7, can you tell me the image name which I can use for styling tabview's > pane? Like I wrote before I was using tabview-pane.png image. > \qooxdoo-0.8.2-sdk\framework\source\re

Re: [qooxdoo-devel] Security implications of using rich labels

2009-10-07 Thread Fabian Jakobs
Hi Dave, > Are there potential security issues with rich labels whose content is > user-generated? E.g., what if you set the text of a rich label to a

Re: [qooxdoo-devel] nested objects inside (qx.ui.table's) remote models

2009-10-07 Thread Derrell Lipman
On Wed, Oct 7, 2009 at 08:50, Burak Arslan wrote: > hi, > > we saw that communicating complex (nested) objects makes our life easier in > some respects. however qooxdoo's remote table implementation lacks support > for nested objects. a small patch that remedies this problem is attached. it > appl

[qooxdoo-devel] re trieve xml from a php-file

2009-10-07 Thread sikd
I'm a little confused. Trying to find out the solution for this, but just couldn't for last 2 days. Any help would be appreciated a lot. So, I would like to retrieve throu a qooxdoo's ajax request an xml-file, which is made dinamically on the server from a mysql database using php. Here is my qx

Re: [qooxdoo-devel] Styling tabview

2009-10-07 Thread monika.falk
Thron7, can you tell me the image name which I can use for styling tabview's pane? Like I wrote before I was using tabview-pane.png image. \qooxdoo-0.8.2-sdk\framework\source\resource\qx\decoration\Modern\tabview\ And after that I got incorrect result. (Bottom right image was moved about two p

[qooxdoo-devel] focus on row upon data load in a table

2009-10-07 Thread skar
Hi, How do I set focus on a particular cell(row,col) of a table, so that a simple "enter" key press makes it editable? The methods I call are: > table.setShowCellFocusIndicator(true); > table.setFocusedCell(0, 0, true); Upon data load, the first row is focused, but no row is selected. Howeve

[qooxdoo-devel] nested objects inside (qx.ui.table's) remote models

2009-10-07 Thread Burak Arslan
hi, we saw that communicating complex (nested) objects makes our life easier in some respects. however qooxdoo's remote table implementation lacks support for nested objects. a small patch that remedies this problem is attached. it applies to the latest trunk. thanks to this patch, i'm able

Re: [qooxdoo-devel] Exact meaning of member attributes

2009-10-07 Thread Fabian Jakobs
Hi Dave, in your eaxmple "foo" is a class variable. Technically everything you add to the members section will be in the prototype of the class. That's why obj.hasOwnProperty('foo') returns false whereas it returns true if you set this in the constructor directly on "this". As you have noted i

[qooxdoo-devel] retrieve xml from a php-file

2009-10-07 Thread Sík Dániel
I'm a little confused. Trying to find out the solution for this, but just couldn't for last 2 days. Any help would be appreciated a lot. So, I would like to retrieve throu a qooxdoo's ajax request an xml- file, which is made dinamically on the server from a mysql database using php. Here i

Re: [qooxdoo-devel] qx.ui.container.Scroll: ARGH!

2009-10-07 Thread Fabian Jakobs
Hi Dave > Also, just to add another point I forgot: it would be really nice to see an > explanation of the difference between these concepts: > > layout flex > layout flex defines the factor remaining space is distributed among flex widgets. If one widget has a flex value of 1 and another wid

Re: [qooxdoo-devel] qx.ui.container.Scroll: ARGH!

2009-10-07 Thread Fabian Jakobs
dmbaggett schrieb: > So I spent another 4+ hours yesterday doing battle with the Scroll container. > I just cannot seem to get this container to work right for me. > > Here's my scenario. I want to put a Scroll and a Composite inside a > Composite. I want these two to flex equally, so that each get

Re: [qooxdoo-devel] Lasting shadow on effect window movement

2009-10-07 Thread Christian Schmidt
Hi Dominik, to move the content and the decoration (e.q. shadow). Use the method getContainerElement() instead of getContentElement(). To get some information from the DOM structure of each widget, have a look at the class description form the widget [1]. Cheers, Chris [1] http://demo.qooxdoo.

Re: [qooxdoo-devel] Styling tabview

2009-10-07 Thread thron7
Monika, a few more hints: - you don't have to combine images (as this would require you to have ImageMagick installed); individual images are just fine. You just have to make sure you follow the naming convention (-tl.png, -t.png, ...). Image combining is just an optimization at load time. -

Re: [qooxdoo-devel] qx.ui.container.Scroll: ARGH!

2009-10-07 Thread thron7
> I was afraid you were going to say that. :) The problem is that it's > written in terms of my form compiler, and it's not easy to redo it as "raw" > QooxDoo code. I plan to make the compiler a contrib at some point, but I'm > trying to get a release out just now and won't have time to do until

[qooxdoo-devel] Lasting shadow on effect window movement

2009-10-07 Thread Dominik Horb
Hi qooxdoo-devels, I first filed this as a bug: http://bugzilla.qooxdoo.org/show_bug.cgi?id=2897 but I've been thinking a bit more about this and am now a bit unsure if this is really the case, so I hope someone here could shed some light on this and tell me if this is the way it should work..

Re: [qooxdoo-devel] Styling tabview

2009-10-07 Thread Christian Schmidt
Hi Monika, sorry for the delay. I have never done this before and tested some thinks. I attached my sample application, that shows how to modify the appearance and decoration file. But the important think is that you have to create your own images for the tabview (page). In my example applica

Re: [qooxdoo-devel] Virtual Mice solve a maze

2009-10-07 Thread sub
Hi, What are the thoughts/plans for the Finite State Machine. I notice that part of the classes are still available in the API but no longer available in the demobrowser. Were there any users of the FSM pattern? Thanks! Derrell Lipman wrote: > > On Wed, Apr 30, 2008 at 6:13 AM, Fabian Jakobs

Re: [qooxdoo-devel] labeling a form using atoms?

2009-10-07 Thread Daniel Wagner
Hi, this should be possible by implementing your own form renderer. Take a look at the _createLabel() method in qx.ui.form.renderer.Single, for example: The first argument is whatever you defined as the second argument for qx.ui.form.Form.add(), so in your own renderer inheriting from the "Sin

Re: [qooxdoo-devel] Exact meaning of member attributes

2009-10-07 Thread Matthew Gregory
There are sometimes thought that this could be an advatange. The proper way to address to statics is via the full namespace (I think you can do something thike this.self(arguments) for short), while "member instances" are access via this. I agree though that this is a real bad practice but I do

Re: [qooxdoo-devel] Security implications of using rich labels

2009-10-07 Thread Matthew Gregory
Just a quick question, by user genererated do you mean the user enters some text that is stored in a database and possibly shown to other users? dmbaggett wrote: > Are there potential security issues with rich labels whose content is > user-generated? E.g., what if you set the text of a rich labe

Re: [qooxdoo-devel] Exact meaning of member attributes

2009-10-07 Thread Loïc Bresson -- Novlog
Hi. I had the same issue about a week ago, and I this is documented here on the wiki: http://qooxdoo.org/documentation/0.8/classes#instance_members Cheers. dmbaggett wrote: > What exactly does code like this mean: > > qx.Class.define("my.class", { > ... > members: { > foo: 1 > } > ...