[qooxdoo-devel] Trying to layout qx.ui.list.List

2013-09-09 Thread Linus Gasser
Hello all, I'm trying to have the QooxDoo-List widget grow with the number of items, before finally adding the scroll-bar when it gets too long. In QooxDoo 1.5 I tried the following: var doc = this.getRoot(), vbox = new qx.ui.container.Composite(new qx.ui.layout.VBox()), list, height="

Re: [qooxdoo-devel] how to use or integrate socket in qooxdoo

2013-09-09 Thread Andreas Parusel
This cannot work. Take a look at the API of addNativeListener: http://demo.qooxdoo.org/current/apiviewer/#qx.bom.Event~addNativeListener!method_public The first argument passed has to be "any valid native event target". You are passing a qooxdoo-object. If something could maybe work, then passing

Re: [qooxdoo-devel] how to use or integrate socket in qooxdoo

2013-09-09 Thread matteomasina
Where I'm wrong ? I try to intercept the Event from Native object, but this don't fire on message arrives. var ws = new test.WebSocket(); qx.bom.Event.addNativeListener(ws,"message", function(e) { alert("connessione aperta"); }, false); /** * @i

Re: [qooxdoo-devel] How to write correct API JsDoc for "link" to property or constructor (qooxdoo 3.0.x)

2013-09-09 Thread Daniel Wagner
Hi Peter, On 09.09.2013 14:32, Peter Schneider wrote: > So my questions are: > a) how to 'link' to a (own) property? Just like any other class item. Your comment is just short one hash, which is why the link to periodStart works: * {@link #periodStart} and {@link periodEnd} > (method 'get

Re: [qooxdoo-devel] Possible issue with grid

2013-09-09 Thread Benjamin Dreux
For my app, i'm using the build version 2013/9/9 Benjamin Dreux > Hi > Here is how it look like in my app > *http://tinyurl.com/qag7cf2* > * > * > *But according to error message and api Grid#setColumnAlign require a > third param* > > > 2013/9/9 John Spackman > >> Hi Benjamin >> >> Please can

Re: [qooxdoo-devel] Possible issue with grid

2013-09-09 Thread Benjamin Dreux
Hi Here is how it look like in my app *http://tinyurl.com/qag7cf2* * * *But according to error message and api Grid#setColumnAlign require a third param* 2013/9/9 John Spackman > Hi Benjamin > > Please can you create playground example? > > John > > From: Benjamin Dreux > Reply-To: qooxdoo Dev

Re: [qooxdoo-devel] how to use or integrate socket in qooxdoo

2013-09-09 Thread matteomasina
Thanks I'm watching for native objects, I hope to find the way, changing this to false in my script doesnt works. Regards Matteo -- View this message in context: http://qooxdoo.678.n2.nabble.com/how-to-use-or-integrate-socket-in-qooxdoo-tp7584526p7584584.html Sent from the qooxdoo mailing lis

Re: [qooxdoo-devel] Possible issue with grid

2013-09-09 Thread John Spackman
Hi Benjamin Please can you create playground example? John From: Benjamin Dreux Reply-To: qooxdoo Development Date: Monday, 9 September 2013 13:29 To: qooxdoo Development Subject: [qooxdoo-devel] Possible issue with grid Hi, As i pointed out in the message 'Issue with firefox', i noti

[qooxdoo-devel] How to write correct API JsDoc for "link" to property or constructor (qooxdoo 3.0.x)

2013-09-09 Thread Peter Schneider
Hi, I can not find[1] any documentation on how to correctly specify links to properties or to a constructor. I used to write it like this in qooxdoo 2.1.x (example code): qx.Class.define("ns.ui.Example", { // ...

[qooxdoo-devel] Possible issue with grid

2013-09-09 Thread Benjamin Dreux
Hi, As i pointed out in the message 'Issue with firefox', i noticed a problem with grid layout and firefox. When we created a grid and put content in all rows and columns but 0,0 The rendering of the grid will break in firefox 23.0.1 when the web console is closed. Is this a known bug ? My solut

Re: [qooxdoo-devel] how to use or integrate socket in qooxdoo

2013-09-09 Thread Andreas Parusel
Hi Matteo, You have to replace "this" with "false" in your code, then it should work. Notice that the WebSocket is a native Object and not a qooxdoo-Object, so you have to use the native addListener()-method, which has different parameters than its qooxdoo counterpart: https://developer.mozill

Re: [qooxdoo-devel] how to use or integrate socket in qooxdoo

2013-09-09 Thread matteomasina
Hi Andreas thank you a lot, I've created a qooxdoo Window and when on window open event I've created the websocket. Everything is working well. the websocket connects to my server and send the message too !!! Great ! the only problem it's about fire event on messege received. I tried : ws.add

Re: [qooxdoo-devel] How to use stopPropagation() and preventDefault() correctly?

2013-09-09 Thread Timo
Kenneth Tilton wrote > Sorry for the late follow-up, but I found that tabbing was not prevented > if I added a second textarea. Interestingly, if I did a little typing and > then tabbed I did stay on the same textarea. But clicking on an empty area > and hitting tab took me to the next. > > I have