Re: [qooxdoo-devel] Role for CoffeeScript in Qooxdoo development?

2011-10-17 Thread Jono
I'm actually using coffeescript for most of my Qooxdoo app at the moment - I just have a Rakefile to compile it before running qooxdoo's generator script. As long as you use qooxdoo's functions and class structure it's fine. On Oct 17, 2011, at 10:33 PM, thron7 wrote: > Hi, > > it's not so eas

[qooxdoo-devel] RadioButton stealing focus when value is set

2011-10-17 Thread Nicholas . Tindall
Hi Guys, I've noticed some annoying behaviour in the RadioButton class which is probably OK in 90% of cases, and hence has not been discussed (as far as I could see). In the _applyValue method: // property apply _applyValue : function(value, old) { value ? this.addSta

[qooxdoo-devel] how to fetch scrollbar-y in a scroll container ?

2011-10-17 Thread franck34
I need to addListener on scrollbar-y. In the demo, i only see a native implementation of qx.ui.core.scroll.ScrollBar this.__scroll = new qx.ui.container.Scroll().set({scrollbarX:'off',scrollbarY:'on',decorator:null}); console.log(this.__scroll.getChildControl('scroll-y')); --> Uncaught Error: Unsu

Re: [qooxdoo-devel] UploadMgr connection to Backend

2011-10-17 Thread randylb
I think I have a solution...looks like setting the parameter "qqfile" in the addParam directive of uploader directly serves my purpose. -- View this message in context: http://qooxdoo.678.n2.nabble.com/UploadMgr-connection-to-Backend-tp6886082p6902004.html Sent from the qooxdoo mailing list arch

Re: [qooxdoo-devel] UploadMgr connection to Backend

2011-10-17 Thread franck34
It's not related to qooxdoo. It's related to how the uploadmgr contrib decide when to use xhr or forms (depending of the browser). That's why i asked to the cool contributor if he can think about force usage of form, so all browsers will send multipart. If your server is linux/unix, you can use

Re: [qooxdoo-devel] Congratulations

2011-10-17 Thread franck34
After some weeks of coding with qooxdoo, i confirm my point of view, and the previous one. (notice i'm not a professional developer) Why i like qooxdoo ? * it help me to make an understandable code * it show me what i'm doing wrong, with understandable messages in browser console (THIS AS NO PRI

Re: [qooxdoo-devel] UploadMgr connection to Backend

2011-10-17 Thread randylb
not quite sure i am understanding what you are saying...I am still quite new to qooxdoo and possibly I am not understanding some of these concepts. As I see it...everything is working as it should except that I am not seeing what and how to connect to handler on the server. I get what is happenin

Re: [qooxdoo-devel] UploadMgr contrib update released - multiple widgets

2011-10-17 Thread franck34
Cool ! I'll test the update. Don't worry for node, i'll send here the server side code to handle both octet-stream and multipart/form-data content-type. I already implement octet-stream, it's easy in fact. But i was thinking (i didn"t go deeper in your code) that the usage of XHR against usual

Re: [qooxdoo-devel] UploadMgr connection to Backend

2011-10-17 Thread John Spackman
Hi Randy, Frank's right - it sounds like your server does not handle the "application/octet-stream" content type. In "traditional" uploads, the file is sent as multipart/form-data and you've probably got code that handles that already (Google if you haven't), but for "application/octet-stream" yo

[qooxdoo-devel] #qooxdoo-fr on freenode

2011-10-17 Thread franck34
Hi i've seen many french people in this mailing list/forum. Sometimes, it's usefull to have quick answer when we begin. So, just for fun and for test, i've just open #qooxdoo-fr on IRC, unofficial. Franck -- All the dat

Re: [qooxdoo-devel] UploadMgr contrib update released - multiple widgets

2011-10-17 Thread John Spackman
Hi Frank I've fixed the problem where the toolbar button's input element overlaps the other buttons on the toolbar - please checkout the latest version and let me know how you get on. There isn't an API to allow you to change the content type of the upload, principally because I had thought that

[qooxdoo-devel] quick find in qooxdoo's list

2011-10-17 Thread Benjamin Dreux
Hi, Today i'm wondering why it is not possible to do quick search in the lists of qooxdoo. It is possible in the selectBox to do quick search, but not in the comboBox. I'm wondering if it's a known fact, and if it is the desired behaviour. What i'm calling quick search is when openning a (long)

Re: [qooxdoo-devel] UploadMgr connection to Backend

2011-10-17 Thread franck34
There is 2 way: modern browser: content-type=application/octet-stream, you have to manage that like a PUT request other browser: classic multipart/form-data as usual I suggest, if you didn't point that, to sniff your network or client side (httpwatch, httpfox, chrome console ..) to see which cont

Re: [qooxdoo-devel] UploadMgr connection to Backend

2011-10-17 Thread randylb
I was able to get the upload working to the Zenesis server...I also plugged the zenesis server into the code for my application and the upload was successful. I then changed line 79 in Application.js to point at my server as suggested. No success there...I am still missing something in server side

Re: [qooxdoo-devel] How to constraint Windows in a zone ?

2011-10-17 Thread franck34
Ok. Seem's i had to put qx.Class.patch(qx.ui.core.MMovable, myApp.patchs.MMovable); in Application.js. Now the code: qx.Mixin.define("myApp.patchs.MMovable", { members: { _onMoveMouseDown : function(e) { console.log('here'); } } }); is firing an error whe

Re: [qooxdoo-devel] How to constraint Windows in a zone ?

2011-10-17 Thread franck34
-- qx.Mixin.define("myApp.patchs.MMovable", { members: { _onMoveMouseDown : function(e) { console.log('here'); [... original code ...] } } }); qx.Class.patch(q

Re: [qooxdoo-devel] How to constraint Windows in a zone ?

2011-10-17 Thread franck34
Now i've tried this : (this file is in source/class/myApp/patchs/MMovable.js) -- qx.Mixin.define("myApp.patchs.MMovable", { members: { _onMoveMouseDown : function(e) {

Re: [qooxdoo-devel] How to constraint Windows in a zone ?

2011-10-17 Thread franck34
Ok, i'm taking a look at this. Please, help me to start, i don't know how to patch a mixin in qooxdoo. I've try this, but it doesn't work. What i'm doing wrong ? qx.Mixin.define("qx.ui.core.MMovable", { members: { _onMoveMouseDown : function(e) { console.log('here');

Re: [qooxdoo-devel] Problems with themed decorators - shadow size increases with use

2011-10-17 Thread John Spackman
Done in http://bugs.qooxdoo.org/show_bug.cgi?id=5715 including a reproducible test case On 12/10/2011 15:29, "Tristan Koch" wrote: >Hi John, > >> Is this intentional? > >I don't think so. At least, we should reproduce and check. Please go >ahead an file a bug report. > >Tristan > > >

Re: [qooxdoo-devel] Role for CoffeeScript in Qooxdoo development?

2011-10-17 Thread Tristan Koch
> 1. Can I use CoffeeScript for your qooxdoo project? > > I guess yes. As you correctly wrote Coffesecript is a translator that > translates CoffeeScript code to JavaScript. All you have to do is to > write CoffeeScript in such a way that valid qooxdoo code is produced > (shouldn't be too hard)

Re: [qooxdoo-devel] Storing an appenable list

2011-10-17 Thread Paul Piper
Hey Christian, I think I am closing in on a working version, but clearly this is getting too complicated. Can't there be a built-in support for lists in the formController? Since my form is auto-created, I now need to: * Extend the list with a listController, add Data to it there * Extend my fo

Re: [qooxdoo-devel] Role for CoffeeScript in Qooxdoo development?

2011-10-17 Thread thron7
Hi, it's not so easy to get to the gist of your post, but I guess it boils down to these questions: 1. Can I use CoffeeScript for your qooxdoo project? I guess yes. As you correctly wrote Coffesecript is a translator that translates CoffeeScript code to JavaScript. All you have to do is to wr

Re: [qooxdoo-devel] Problem of Part Loader - I have been tired - It can not work =(

2011-10-17 Thread thron7
On 10/17/2011 08:43 AM, Martin Wittemann wrote: > Hey, > seems like your code is missing. Without any code, we can't provide you any > help. :( Martin, you have to look at Nabble directly. If a post is posted on Nabble, some text (formatted? code?) will be omitted when copying the message to

Re: [qooxdoo-devel] Best practice for generating bigger formatted junks of HTML

2011-10-17 Thread Martin Wittemann
Hey, Is there anybody having advice on how to best generate larger chunks of HTML being used as content in either qx.ui.embed.Html or qx.ui.basic.Label {rich: true}. Is there a preferred template engine used to solve this problem of having mixed content websites? We recently introduced a mustache.