[qooxdoo-devel] question about problem with command and table

2013-08-26 Thread rsantiagopaz
I reproduce a little problem I have in my projects, from early Qoxdoo versions and 3.x included. Try this http://tinyurl.com/l6cumlo , select a item from the list, and call popup with any of this actions: 1) double click in item list 2) using right click mouse and context menu 3) press Enter key

Re: [qooxdoo-devel] Messed up responses while doing xhr requests from localhost to localhost

2013-08-26 Thread Richard Sternagel
Hi dbrec, it's hard to tell without a (client) playground example. Can you provide one? > No issue if the server is on different machine... Does your described behaviour occur with those services, too? http://www.jsontest.com/ If not can you strip down your server code as much as possible an

Re: [qooxdoo-devel] Table row bind

2013-08-26 Thread woprandi
I'll see that. Thanks for answers 2013/8/26 Christian Hagendorn [via qooxdoo] < ml-node+s678n7584465...@n2.nabble.com> > Hi, > > no, the table doesn't support data-binding for this case. Using listeners > is the only way. > > Cheers, > Chris > > -- > If you reply to

Re: [qooxdoo-devel] Table row bind

2013-08-26 Thread Michael Elsdörfer
Here's a controller that you can use for databinding: https://gist.github.com/miracle2k/5876245 textfield.bind('value', tableController.selection[0], 'someModelProperty') should work. Michael Le 24/08/2013 16:38, woprandi a écrit : > Hi, > > Does exist a easy way to bind a table row to a form

Re: [qooxdoo-devel] Problematic popup

2013-08-26 Thread Ilkka Oksanen
On Mon, Aug 26, 2013 at 5:49 AM, Richard Sternagel < richard.sterna...@1und1.de> wrote: > Hi Ilkka, > > > I mean that if I click somewhere outside of the button and popup, the > > popup gets hidden (because of autohide true) but the button stays > checked. > > Okay, now I see. You can achieve your

Re: [qooxdoo-devel] Qx.ui.Form.List --> make a class --> query data to sqlite server.....

2013-08-26 Thread Jesús
Hi, Upss Thanks and sorry.. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Qx-ui-Form-List-make-a-class-query-data-to-sqlite-server-tp7584459p7584477.html Sent from the qooxdoo mailing list archive at Nabble.com. --

Re: [qooxdoo-devel] Qx.ui.Form.List --> make a class --> query data to sqlite server.....

2013-08-26 Thread Juan Fernando Estrada
HI Jesus, yo need call the super constructor at the begin of the init funcion. this.base(arguments) El 26/08/13 9:10, Jesús escribió: > Thanks for responding so quickly and my apologies for not being clear. > > I need to create a class inherited from qx.ui.form.List but when I do this: > > qx.

Re: [qooxdoo-devel] Qx.ui.Form.List --> make a class --> query data to sqlite server.....

2013-08-26 Thread Jesús
Thanks for responding so quickly and my apologies for not being clear. I need to create a class inherited from qx.ui.form.List but when I do this: qx.Class.define("timerecording.pruebas.lista", { extend : qx.ui.form.List, construct : function() { }, members: { init: function()

Re: [qooxdoo-devel] Problematic popup

2013-08-26 Thread Richard Sternagel
Hi Ilkka, > I mean that if I click somewhere outside of the button and popup, the > popup gets hidden (because of autohide true) but the button stays checked. Okay, now I see. You can achieve your wanted behaviour with the aid of a blocker object, which blocks events: http://tinyurl.com/l3r48jm

[qooxdoo-devel] Messed up responses while doing xhr requests from localhost to localhost

2013-08-26 Thread dbrec
I have a strange problem with xhr requests while testing my application with server and client on the same host. If the client sends 2 different requests, but quite in the same time, the answers are messed up: usually the first request receive no answer and the second receive the 2 answers merged

Re: [qooxdoo-devel] color flashing a table row

2013-08-26 Thread Andreas Parusel
Hi Michael, there is no build-in logic to achieve what you want to do. It must be done "by hand". I looked at the according classes and here is the basic outline how I would approach this task. Basic Idea: 1. Access the DOM-Element of the row of interest. 2. Perform a CSS color transition on th

Re: [qooxdoo-devel] Bidirectional Data Binding for custom widget with CheckBox and TextField

2013-08-26 Thread larseitzen
Hey Chris, thanks a lot. Many thanks to T. as well! best, Lars -Ursprüngliche Mitteilung- Von: Christian Hagendorn An: qooxdoo-devel Verschickt: Mo, 26 Aug 2013 12:31 pm Betreff: Re: [qooxdoo-devel] Bidirectional Data Binding for custom widget with CheckBox and TextField

Re: [qooxdoo-devel] Bidirectional Data Binding for custom widget with CheckBox and TextField

2013-08-26 Thread Christian Hagendorn
Hi Lars, you are setting the CheckBox and Button as anonymous: control.setAnonymous(true); As you can read [1], the widget doesn't receive any events, therefore you can't click it. Remove these lines form your widget and it works as expected: http://tinyurl.com/lrgjh7t Cheers, Chris [1] http:/

Re: [qooxdoo-devel] Automatically calling super constructor

2013-08-26 Thread Airblader
I know that this is the correct prototype chain behavior; the question is: is it the behavior qooxdoo wants to model? Afterall, qooxdoo does model a lot of Java's design – and this is a somewhat hidden, but significant difference. -- View this message in context: http://qooxdoo.678.n2.nabble.co

Re: [qooxdoo-devel] Bidirectional Data Binding for custom widget with CheckBox and TextField

2013-08-26 Thread larseitzen
Hi, Chris. Yes, of course. I'm sorry, I forgot to include that file. I have uploaded a running example to the link: http://tinyurl.com/kn4ypxv Best, Lars -Ursprüngliche Mitteilung- Von: Christian Hagendorn An: qooxdoo-devel Verschickt: Mo, 26 Aug 2013 10:30 am Betreff: Re: [qoox

Re: [qooxdoo-devel] Bidirectional Data Binding for custom widget with CheckBox and TextField

2013-08-26 Thread Christian Hagendorn
Hi Lars, the playground example doesn't work. The implementation for the listsync.ListItemModel is missing. Could you please provide a running example. Otherwise it is not possible to reproduce your issue. Cheers. Chris -- View this message in context: http://qooxdoo.678.n2.nabble.com/Bidirec

Re: [qooxdoo-devel] Qx.ui.Form.List --> make a class --> query data to sqlite server.....

2013-08-26 Thread Christian Hagendorn
Hi, sorry, I do not understand what is exactly your issue? Cheers, Chris -- View this message in context: http://qooxdoo.678.n2.nabble.com/Qx-ui-Form-List-make-a-class-query-data-to-sqlite-server-tp7584459p7584466.html Sent from the qooxdoo mailing list archive at Nabble.com. ---

Re: [qooxdoo-devel] Table row bind

2013-08-26 Thread Christian Hagendorn
Hi, no, the table doesn't support data-binding for this case. Using listeners is the only way. Cheers, Chris -- View this message in context: http://qooxdoo.678.n2.nabble.com/Table-row-bind-tp7584456p7584465.html Sent from the qooxdoo mailing list archive at Nabble.com. -

Re: [qooxdoo-devel] Automatically calling super constructor

2013-08-26 Thread Christian Hagendorn
Hi, it's not a bug, this is JavaScript behavior. When you override the constructor you have to ensure to call the super constructor (with this.base(...)) Cheers, Chris -- View this message in context: http://qooxdoo.678.n2.nabble.com/Automatically-calling-super-constructor-tp7584460p7584464.h

Re: [qooxdoo-devel] Window slide out on open and in on close

2013-08-26 Thread Martin Wittemann
Hey, > I have seen some examples of this using the old qx.fx animations but I am > using the 3.0 version of the framework and need a little help. I hope that was in some old documentation and not in the one for 3.0, right? > I would like the window to slide in on button click that opens the windo

Re: [qooxdoo-devel] Bidirectional Data Binding for custom widget with CheckBox and TextField

2013-08-26 Thread thron7
Please create a Playground [1] sample that shows the problem, and post the link to it (use "Shorten URL"). T. [1] http://playground.qooxdoo.org/ On 08/22/2013 05:08 PM, larseit...@aol.com wrote: Hi, I'm trying to change the checkbox states by clicking on them, but it doesn't work. Also wh