Re: [qooxdoo-devel] Popup placements, computation of dimensions

2010-03-01 Thread thron7
On 03/01/2010 06:59 AM, Jean-Noël Rivasseau wrote: Hi team, A few questions: 1) Is it possible to obtain the computed (actual) width or height of a widget at runtime? I did not see anything like that in the Widget API (but may have missed something). The only current way I can think of

Re: [qooxdoo-devel] File Uploader?

2010-03-01 Thread thron7
On 03/01/2010 08:24 AM, Stefan Meyer wrote: Hello, will it be included in the official qooxdoo in the next time? Where can i download it? Start off of the main contribution page (there is really nothing unofficial about it), http://qooxdoo.org/contrib T. 2010/3/1 Jean-Noël

Re: [qooxdoo-devel] missing destruct definition in framework (v1.0.1)

2010-03-01 Thread Christian Schmidt
Hi Peter, thank you for reporting. I fixed the issue on trunk and branch. See bug report: http://bugzilla.qooxdoo.org/show_bug.cgi?id=3488 Cheers, Chris Am 26.02.2010 16:24, schrieb Peter Schneider: Hello guys, I found a missing destruct definition at bom.Blocker : 013601 Missing destruct

Re: [qooxdoo-devel] missing destruct definition in framework (v1.0.1)

2010-03-01 Thread Peter Schneider
Hi Chris, I can confirm that the issue is fixed! Thanks, Peter Hi Peter, thank you for reporting. I fixed the issue on trunk and branch. See bug report: http://bugzilla.qooxdoo.org/show_bug.cgi?id=3488 Cheers, Chris [...]

Re: [qooxdoo-devel] missing destruct definition in framework (v1.0.1)

2010-03-01 Thread Christian Schmidt
Hi Peter, thanks! Cheers, Chris Am 01.03.2010 13:23, schrieb Peter Schneider: Hi Chris, I can confirm that the issue is fixed! Thanks, Peter Hi Peter, thank you for reporting. I fixed the issue on trunk and branch. See bug report:

Re: [qooxdoo-devel] Desktop drag and drop with crazy blocker hack

2010-03-01 Thread Alexander Steitz
Hi Dave, On Sunday February 28 2010 16:51:14 Dave Baggett wrote: I'm trying to make desktop drag and drop work under IE. Basically, I want to make an atom (label plus image) natively draggable to the desktop. Right now I'm using a plugin to make this work, but I'm not entirely sure that's

Re: [qooxdoo-devel] Table sort order for German date?

2010-03-01 Thread thron7
Hansjoerg, In a table in the column Date you can see a file create date. The date and all other info comes from a MySQL DB. The SQL request is sorted with the newest date at top. Example: FileName, FileSize, Date - file1, 10kb,

Re: [qooxdoo-devel] strange generate translation behavior

2010-03-01 Thread Peter Schneider
Hi Thomas, unfortunately I am not able to create a simple (Hello-World based) test environment to _reliably_ reproduce this issue...Something Fritz noticed, too. Today for example I can not reproduce this at all! Whenever this comes up again, is there any hint on where to search for the problem?

Re: [qooxdoo-devel] Desktop drag and drop with crazy blocker hack

2010-03-01 Thread Dave Baggett
Is the qooxdoo drag cursor draggable to the desktop, though? That's the thing that seems to be really challenging here: I'm trying to enable users to drag stuff to the desktop, not just drag between QooxDoo widgets. If there's some way I could extend the QooxDoo drag cursor to enable dragging to

Re: [qooxdoo-devel] Popup placements, computation of dimensions

2010-03-01 Thread Christian Schmidt
Hi Jean-Noël, 3) I dont really understand how the placement of popups work. By default if you use the keep-align value for the placementMode properties, it seems that the popup automatically moves around from right to left if there is not enough space at right and there is at left.

Re: [qooxdoo-devel] Popup placements, computation of dimensions

2010-03-01 Thread Alexander Steitz
Hi Jean-Noël, On Monday March 1 2010 06:59:27 Jean-Noël Rivasseau wrote: 2) Can someone explain me the actual difference between the decorator and shadow decorator? I mean, if there any actually technical differences between those two in the way they act on the Widget? Curious about that. The

Re: [qooxdoo-devel] Desktop drag and drop with crazy blocker hack

2010-03-01 Thread Alexander Steitz
Hi Dave, On Sunday February 28 2010 16:53:56 Dave Baggett wrote: BTW, following up on my own post: the Swell JS library appears to have some fancy desktop drag and drop stuff. I looked at the code but didn't really spend enough time to understand well what they were doing as it was quite

Re: [qooxdoo-devel] strange generate translation behavior

2010-03-01 Thread thron7
On 03/01/2010 02:18 PM, Peter Schneider wrote: Hi Thomas, unfortunately I am not able to create a simple (Hello-World based) test environment to _reliably_ reproduce this issue...Something Fritz noticed, too. Today for example I can not reproduce this at all! Whenever this comes up

Re: [qooxdoo-devel] Table sort order for German date?

2010-03-01 Thread Qoodary
Hi Thron, thanks a lot for your help. I am new to Qooxdoo, so I am not sure what you mean with Are you feeding string data into this column of the model? If so, it would probably be better you changed that and stored JS *Date* objects. I try to give a little bit more information. The QX code

[qooxdoo-devel] JSON_Date Bug in PHP RPC Server 0.8

2010-03-01 Thread ThePatrick
Dear all, For some reason the Date objects sent from JavaScript to PHP differ in 1 month. It seems that JavaScript Date objects number months from 0 to 11, whereas PHP date functions number months from 1 to 12. I think line 777 in JSON.phps should be changed to something like this:

Re: [qooxdoo-devel] Desktop drag and drop with crazy blocker hack

2010-03-01 Thread Dave Baggett
You can browser the SwellJS drag and drop source here: http://svn.justswell.org/trunk/Lib/DD/ Dave -- View this message in context: http://n2.nabble.com/Desktop-drag-and-drop-with-crazy-blocker-hack-tp4649289p4655529.html Sent from the qooxdoo mailing list archive at Nabble.com.

Re: [qooxdoo-devel] Table sort order for German date?

2010-03-01 Thread thron7
I select the FileDate from MysQL DB and format it with MySQL function DATE_FORMAT Select ... DATE_FORMAT(B.FileDate, '%d.%m.%Y %k:%i:%s') AS FileDate from table .. .. $recordset[] = array($color,$row['FileName'],$file_kb,$row['FileDate'] ); .. echo json_encode($recordset); Do you

Re: [qooxdoo-devel] Table sort order for German date?

2010-03-01 Thread Qoodary Doo
Thron, thanks very much for you very useful explanation. Yes it is now clearer what you mean. I will test your snippet and recommandation tomorrow and will tell you how it works. kind regards Hansjoerg 2010/3/1 thron7 thomas.herchenroe...@1und1.de I select the FileDate from MysQL DB and

Re: [qooxdoo-devel] Extending Themes

2010-03-01 Thread Joachim Baran
Hello, I am again having trouble with qx.ui.decoration.Grid and my own baseImage. While I got it to work under OSX by referring to the baseImage which is called 'captionbar-active.png' and then have files called 'captionbar-active-b.png', 'captionbar-active-bl.png', etc, in my resource

Re: [qooxdoo-devel] Fwd: example of binding listcontroller selection to formcontroller?

2010-03-01 Thread Greg Beaver
On 3/1/10 1:30 AM, MartinWittemann wrote: Hello Greg, sure you get help here. But keep in mind that non of us at the core team is working on weekends so you have to wait until we are back at the office. And don't forget the dime difference from your country to germany. But now to your

Re: [qooxdoo-devel] Fwd: example of binding listcontroller selection to formcontroller?

2010-03-01 Thread Derrell Lipman
On Mon, Mar 1, 2010 at 14:36, Greg Beaver g...@chiaraquartet.net wrote: My vmware ubuntu instance doesn't have ssl enabled for svn at the moment (I am looking to see if I need to compile a custom svn, but that may take a while with my limited time), but I can wait until 1.0.2 comes out if

Re: [qooxdoo-devel] Fwd: example of binding listcontroller selection to formcontroller?

2010-03-01 Thread Greg Beaver
On 3/1/10 2:07 PM, Derrell Lipman wrote: On Mon, Mar 1, 2010 at 14:36, Greg Beaver g...@chiaraquartet.net mailto:g...@chiaraquartet.net wrote: My vmware ubuntu instance doesn't have ssl enabled for svn at the moment (I am looking to see if I need to compile a custom svn, but

[qooxdoo-devel] Table selection clears on hitting spacebar?

2010-03-01 Thread greasydigits
I haven't been able to find any mention of this undesired behavior in the mailing list so far. The issue I am having is with the table clearing multiple selected rows to the last selected row whenever the spacebar is pressed. This is a problem in my project as I wish to recreate the intuitive

Re: [qooxdoo-devel] Popup placements, computation of dimensions

2010-03-01 Thread Jean-Noël Rivasseau
Yes, I understood the need for two different properties, but apart from that there is no difference at all between the two decorators? I mean, you seem to say that technically both apply in exactly the same way. So it is only by convention that the shadow decorator is used for shadows; you could

Re: [qooxdoo-devel] Popup placements, computation of dimensions

2010-03-01 Thread Jean-Noël Rivasseau
Ha, getBounds() is what I was looking for. It may still have the limitations you said but I am not even sure (by glancing at the Qx sources I've seen that there seems to be some sort of precomputation of dimensions). But I would have to dig further on that. On Mon, Mar 1, 2010 at 2:29 AM, thron7

Re: [qooxdoo-devel] Speedup source?

2010-03-01 Thread Ian Horst
Nobody really mentioned tuning of network settings in web browser. I personally use firefox for development tasks. As a starting point go to the following links and discover ways how to speed up loading hundreds of files qooxdoo source has: http://en.wikipedia.org/wiki/HTTP_pipelining

Re: [qooxdoo-devel] Table selection clears on hitting spacebar?

2010-03-01 Thread Derrell Lipman
On Mon, Mar 1, 2010 at 21:03, Derrell Lipman derrell.lip...@unwireduniverse.com wrote: On Mon, Mar 1, 2010 at 16:04, greasydigits kar...@neo.rr.com wrote: I haven't been able to find any mention of this undesired behavior in the mailing list so far. Undesirable is in the eyes of the

Re: [qooxdoo-devel] Table selection clears on hitting spacebar?

2010-03-01 Thread Derrell Lipman
On Mon, Mar 1, 2010 at 16:04, greasydigits kar...@neo.rr.com wrote: I haven't been able to find any mention of this undesired behavior in the mailing list so far. Undesirable is in the eyes of the beholder. :-) The issue I am having is with the table clearing multiple selected rows to the

[qooxdoo-devel] Qooxdoo real world example (using RoR as a backend)

2010-03-01 Thread Raul Gutierrez Segales
Hi guys, I wanted to share our app that was built using Qooxdoo + Ruby on Rails: http://inventario-demo.paraguayeduca.org User: admin Password: admin We use it to track our laptops, support tickets and our network status (using Google Maps embeded inside a Qooxdoo Window to geographically

Re: [qooxdoo-devel] Fwd: example of binding listcontroller selection to formcontroller?

2010-03-01 Thread MartinWittemann
Hello Greg, Im happy that we could solve your problem together. :) Btw. Thanks Derrell for helping me out and sending the patch. :) But now to your questions, Greg: Greg Beaver wrote: I do have to say the elegance of the binding as implemented in qooxdoo (when it works) is brilliant, and a

Re: [qooxdoo-devel] Speedup source?

2010-03-01 Thread Fritz Zaucker
Ian, the tuning you suggest would not speed up file-based access, or would it? I believe usually the source version of an Qooxdoo application is accessed via the Open-File method and not via http requests. Cheers, Fritz On Tue, 2 Mar 2010, Ian Horst wrote: Nobody really mentioned tuning of