Re: [qooxdoo-devel] drag and drop with a checkbox?

2010-04-11 Thread Greg Beaver
On 4/8/10 8:21 AM, Christian Schmidt wrote: > Hi Greg, > > thank you for your suggestions, I will this discuss with the other core > developer. > > At the moment I have only the idea override the stopPropagation method, > to avoid a copy/past: > _onMouseDown : function(e) > { > var oldStopPro

Re: [qooxdoo-devel] drag and drop with a checkbox?

2010-04-08 Thread Christian Schmidt
Hi Greg, thank you for your suggestions, I will this discuss with the other core developer. At the moment I have only the idea override the stopPropagation method, to avoid a copy/past: _onMouseDown : function(e) { var oldStopPropagation = e.stopPropagation; e.stopPropagation = function

Re: [qooxdoo-devel] drag and drop with a checkbox?

2010-04-07 Thread Greg Beaver
On 4/7/10 2:04 AM, Christian Schmidt wrote: > Hi Greg, > > Thank you for answering, but I think it's like Alex sad in a other > thread. You have to override the behavior yourself. Hi, I have done this, but the problem is twofold: this is not documented anywhere that drag/drop doesn't work with ch

Re: [qooxdoo-devel] drag and drop with a checkbox?

2010-04-07 Thread Christian Schmidt
Hi Greg, Thank you for answering, but I think it's like Alex sad in a other thread. You have to override the behavior yourself. Cheers, Chris Am 07.04.2010 04:12, schrieb Greg Beaver: > On 4/6/10 3:04 AM, Christian Schmidt wrote: > >> Hi Greg, >> >> could you please send me a code snippet t

Re: [qooxdoo-devel] drag and drop with a checkbox?

2010-04-06 Thread Greg Beaver
On 4/6/10 3:04 AM, Christian Schmidt wrote: > Hi Greg, > > could you please send me a code snippet to reproduce this behavior? > Hi Chris, I took this example: http://demo.qooxdoo.org/current/demobrowser/#data~ExtendedList.html and combined it with this one: http://demo.qooxdoo.org/current/demo

Re: [qooxdoo-devel] drag and drop with a checkbox?

2010-04-06 Thread Christian Schmidt
Hi Greg, could you please send me a code snippet to reproduce this behavior? Thanks, Chris Am 01.04.2010 15:38, schrieb Greg Beaver: > Hi, > > I have a List containing custom ListItems that are CheckBox objects as > in one of the demo browser examples. I'd like to be able to have the > user re-

[qooxdoo-devel] drag and drop with a checkbox?

2010-04-01 Thread Greg Beaver
Hi, I have a List containing custom ListItems that are CheckBox objects as in one of the demo browser examples. I'd like to be able to have the user re-order the list by drag and drop, but it appears that the event handling for the checkbox is preventing drag and drop from working. Is there anyt