Re: [qooxdoo-devel] drag and drop types

2012-07-24 Thread Philipp Engel
ers, Phil Von: Mustafa Sak [mailto:mustafa@1und1.de] Gesendet: Dienstag, 24. Juli 2012 10:47 An: qooxdoo Development Betreff: Re: [qooxdoo-devel] drag and drop types Hi Phil, could you please provide a playground example. Your link points just to playground without example. Please use tinyurl

Re: [qooxdoo-devel] drag and drop types

2012-07-24 Thread Mustafa Sak
(), .getCurrentTraget(), .getRelatedTarget()) may be one of these can help you out. Regards Mustafa Von: Philipp Engel [mailto:en...@hmi-tec.com] Gesendet: Dienstag, 24. Juli 2012 09:14 An: qooxdoo-devel@lists.sourceforge.net Betreff: [qooxdoo-devel] drag and drop types Hi, I got three lists. I

[qooxdoo-devel] drag and drop types

2012-07-24 Thread Philipp Engel
Hi, I got three lists. I would like to drop to list1 and would like to know from which list (list2, list3) the drop comes from. How can I do this. In the documentation I read, that I can add any Qooxdoo "type" as parameter to method "e.addType()". Could you give me an example, of types I can ad

Re: [qooxdoo-devel] Drag and Drop

2012-07-09 Thread Alexander Steitz
07, 2012 8:15 AM To: qooxdoo Development Subject: Re: [qooxdoo-devel] Drag and Drop Hi Alex, Thanks for your response. So I can add any custum own type. For example like abc/xyz. If I try this I get the message, that this type is not supported by qooxdoo. And I still don't understand how I can d

Re: [qooxdoo-devel] Drag and Drop

2012-07-06 Thread Philipp Engel
> -Original Message- > From: Philipp Engel [mailto:philipp.en...@netriver.de] > Sent: Friday, July 06, 2012 9:26 AM > To: qooxdoo-devel@lists.sourceforge.net > Subject: [qooxdoo-devel] Drag and Drop > > Hi, > > I use drag and drop (dad). In the dragstart eventlis

Re: [qooxdoo-devel] Drag and Drop

2012-07-06 Thread Alexander Steitz
mp; Drop" to get to know the details. -> http://manual.qooxdoo.org/current/pages/desktop/ui_dragdrop.html Regards, Alex -Original Message- From: Philipp Engel [mailto:philipp.en...@netriver.de] Sent: Friday, July 06, 2012 9:26 AM To: qooxdoo-devel@lists.sourceforge.net Subjec

[qooxdoo-devel] Drag and Drop

2012-07-06 Thread Philipp Engel
Hi, I use drag and drop (dad). In the dragstart eventlistener I want to add a new type other than qx/list-items even when I have a list with list-items. I need this to make a distinction between several lists to know from where the dad comes from. How can I do this and by the way which are the d

Re: [qooxdoo-devel] Drag and drop

2012-06-21 Thread Martin Wittemann
Hey, I don't think its possible to connect the listener pairs somehow. As far as I can remember, you can add some kind of data to the drag start or action to the data during drag start. You could add different types of data either your draging from the tree or from the list. The drop listener co

[qooxdoo-devel] Drag and drop

2012-06-21 Thread Philipp Engel
Hi together, I have two trees with folders and a list. First of all I can drag from tree 2 to tree 1. Now I want to add another drag and drop functionality to drag list items to tree 1. The problem is, that the functionality of the two drag and drops interfere with each other. How is it possibl

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

Re: [qooxdoo-devel] drag and drop rows within a table

2009-11-12 Thread skar
Hi Stefan, > Hi Skar, > > AFAIK this is not possible with table, but as your are asking about > other widgets: > See #ui~DragDrop.html in demo browser, the reorderable list on the right > side shows its capability. > > You might place a custom list side-by-side to a table; if a user > reorders t

Re: [qooxdoo-devel] drag and drop rows within a table

2009-11-12 Thread Stefan Volbers
Hi Skar, AFAIK this is not possible with table, but as your are asking about other widgets: See #ui~DragDrop.html in demo browser, the reorderable list on the right side shows its capability. You might place a custom list side-by-side to a table; if a user reorders the list, you can update the

Re: [qooxdoo-devel] drag and drop rows within a table

2009-11-12 Thread skar
Jonathan Weiß wrote: > Hello skar, > > > yes, you can re-order rows in the table by drag and drop a row header. Try > it online: > http://demo.qooxdoo.org/devel/demobrowser/index.html#table~Table.html > Thanks for the tip. But I don't want to re-order the columns, I want to re-order the rows.

Re: [qooxdoo-devel] drag and drop rows within a table

2009-11-12 Thread Jonathan Weiß
Hello skar, yes, you can re-order rows in the table by drag and drop a row header. Try it online: http://demo.qooxdoo.org/devel/demobrowser/index.html#table~Table.html Kind regards Jonathan - Jonathan Weiß Framework Engineer http://mysterycity.de/blog Blog - http://www.linkedin.com/in/j

[qooxdoo-devel] drag and drop rows within a table

2009-11-12 Thread skar
Hi, Does qooxdoo support re-ordering the rows within a table by drag and drop? If not, is there any other widget which allows re-ordering of items in a list? cheers, skar. -- -- The life so short, the craft so long to learn. -

Re: [qooxdoo-devel] drag and drop demo

2008-08-21 Thread John de la Garza
> --- > > This seems like a dumb question to me, but I have searched the widgets > and containers > looking for something to drop the image into. > > Would I just drop it into a div area? or canvas? Any suggestions?

Re: [qooxdoo-devel] drag and drop demo

2008-08-20 Thread Derrell Lipman
On Wed, Aug 20, 2008 at 9:20 PM, John de la Garza <[EMAIL PROTECTED]> wrote: > I'm trying to put together a drag and drop interface to demo qooxdoo at > work... > > I've given up on the video embedding for now and am going to substitute > images. > > I have an image on a page done like this: > > -

[qooxdoo-devel] drag and drop demo

2008-08-20 Thread John de la Garza
I'm trying to put together a drag and drop interface to demo qooxdoo at work... I've given up on the video embedding for now and am going to substitute images. I have an image on a page done like this: -

[qooxdoo-devel] Drag and Drop from qx.ui.tree.Tree to outside the browser window

2008-04-15 Thread Ina Munteanu
Hello! I am using a qx.ui.tree.Tree just like in example /demobrowser/#test~Tree_6.html. When dragging a node outside the browser window, dropping it (mouse-up) in there, then moving the mouse in the window area again, the tooltip remains displayed on mouse-up and any other operations on Tree ar

[qooxdoo-devel] Drag and Drop from [qx.ui.tree.Tree] outside the window

2008-04-08 Thread Ina Munteanu
Hello! I am using a qx.ui.tree.Tree just like in example /demobrowser/#test~Tree_6.html. When dragging a node outside the browser window, dropping it (mouse-up) in there, then moving the mouse in the window area again, the tooltip remains displayed on mouse-up and any other operations on Tree ar

Re: [qooxdoo-devel] Drag and Drop with virtual widgets

2007-08-09 Thread Derrell Lipman
On 8/7/07, bibliograph <[EMAIL PROTECTED]> wrote: > sorry I am creating monologic threads ... more like a blog ... my > problems seem to be quite esoteric. Hi Christian, Nope, not esoteric at all. I don't use a mouse if I can avoid it, so I don't tend to use that functionality, and when I was im

Re: [qooxdoo-devel] Drag and Drop with virtual widgets - solved

2007-08-07 Thread bibliograph
My mistake! The drag and drop handler getData method needs the type as argument, so the dragStart event handler needs to add the type like so event.addData("node", node); so that the supportsDrop method can receive it like so: node = qx.event.handler.DragAndDropHandler.getInstance().getData("no

Re: [qooxdoo-devel] Drag and Drop with virtual widgets

2007-08-07 Thread bibliograph
sorry I am creating monologic threads ... more like a blog ... my problems seem to be quite esoteric. Anyways, here is an update. I want to drag a tree node from one treeVirtual to another. I am using this supportsDrop function to check whether I can drop the node: // function to check whether

[qooxdoo-devel] Drag and Drop with virtual widgets

2007-08-07 Thread bibliograph
Hello, there seems to be a problem (or at least I am having this problem) with drag & drop involving virtual widgets. The current architecture assumes that it is enough to store the sourceWidget and the destinationWidget during the drag session. However, with virtual widgets this is not enough

Re: [qooxdoo-devel] drag and drop with lists

2007-03-28 Thread Joe Hudson
yList.getSelectedItem(), e.getTarget()); } }, useAsThis); listItem.setDropDataTypes(["test/myType"]); return listItem; } Joe -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of sub Sent: Wednesday, March 28, 2007 7:44 PM To: q

Re: [qooxdoo-devel] drag and drop with lists

2007-03-28 Thread sub
It's always nice to post your thoughts/answers incase some one else is searching for a similar issue. Joe Hudson-2 wrote: > > Forget my question… I figured it out :-) Thanks. > -- View this message in context: http://www.nabble.com/drag-and-drop-with-lists-tf3482274.html#a9722310 Sent fr

Re: [qooxdoo-devel] drag and drop with lists

2007-03-28 Thread Joe Hudson
Forget my question… I figured it out :-) Thanks. Joe _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Joe Hudson Sent: Wednesday, March 28, 2007 2:58 PM To: 'qooxdoo Development' Subject: [qooxdoo-devel] drag and drop with lists Are there any goo

[qooxdoo-devel] drag and drop with lists

2007-03-28 Thread Joe Hudson
Are there any good examples showing how to drag and drop with lists? I’m trying to figure out how to move items around in a list using drag and drop and am having some trouble. Can anybody help me with this? Thank you very much. What I have so far (which is not working) is below: testList = ne

Re: [qooxdoo-devel] Drag and Drop feedback

2007-01-26 Thread Fabian Jakobs
Til Schneider schrieb: > Fabian Jakobs wrote: > >> Til, I have seen You added support for a Drag and Drop Feedback widget. >> This looks very promising. Could you provide a simple test for the >> example section to demonstrate how it looks and works? >> > > Shure. I modified test/DragAnd

Re: [qooxdoo-devel] Drag and Drop feedback

2007-01-26 Thread Til Schneider
Fabian Jakobs wrote: > Til, I have seen You added support for a Drag and Drop Feedback widget. > This looks very promising. Could you provide a simple test for the > example section to demonstrate how it looks and works? Shure. I modified test/DragAndDropManager_2.html. rev 5879 ---

[qooxdoo-devel] Drag and Drop feedback

2007-01-26 Thread Fabian Jakobs
Hi, Til, I have seen You added support for a Drag and Drop Feedback widget. This looks very promising. Could you provide a simple test for the example section to demonstrate how it looks and works? Best Fabian - Take Surv

[qooxdoo-devel] drag and drop in custom applications

2007-01-24 Thread Elie Dumas
Hi list, I noticed that when your are developping your own application, you can't use drag & drop facility until you manually include "qx.event.*" into your makefile (especially for files qx.event.handler.DragAndDropHandler.js and qx.event.type.DragEvent.js). Why aren't these files included by

[qooxdoo-devel] Drag and drop question

2006-12-14 Thread Jim Hunter
I am trying to create a drag and drop program but running into some odd behavior. I created an object that allows itself to be moved to another location via drag & drop. What I am seeing is that when I try and set the new location of the object via setTop and setLeft, it is setting it as a relativ

Re: [qooxdoo-devel] drag-and-drop reordering within a listview

2006-02-17 Thread Andreas Ecker
Hi! Priebe, Jason wrote: Can anyone offer any tips on how to enable reordering listview items via drag-and-drop? Can it even be done? Jason Priebe CBC New Media Sorry, currently, such a feature is not implemented. You might want to check the test examples related to drag & drop for general

[qooxdoo-devel] drag-and-drop reordering within a listview

2006-02-17 Thread Priebe, Jason
Can anyone offer any tips on how to enable reordering listview items via drag-and-drop? Can it even be done? Jason Priebe CBC New Media --- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Down

Re: [qooxdoo-devel] drag and drop interface "hang"

2006-01-13 Thread Fred McDavid
It's possibly reproduceable on drag-drop...it's unpredictable elsewhere. I'll see if I can make a demo that breaks. --Fred On Friday 13 January 2006 09:50 am, Sebastian Werner wrote: > Fred McDavid schrieb: > > I'm noticing this "freezing" from time to time is other areas as > > well...same wor

Re: [qooxdoo-devel] drag and drop interface "hang"

2006-01-13 Thread Sebastian Werner
Fred McDavid schrieb: I'm noticing this "freezing" from time to time is other areas as well...same workaround though...allow the browser to lose focus, then regain it, and all's well again. Would well placed calls to flushGlobalQueues (as suggested for my refresh problems) tend to help this or

Re: [qooxdoo-devel] drag and drop interface "hang"

2006-01-12 Thread Fred McDavid
I'm noticing this "freezing" from time to time is other areas as well...same workaround though...allow the browser to lose focus, then regain it, and all's well again. Would well placed calls to flushGlobalQueues (as suggested for my refresh problems) tend to help this or is that unlikely? Tha

[qooxdoo-devel] drag and drop interface "hang"

2006-01-10 Thread Fred McDavid
When I complete a drag event (either successfully or unsuccessfully) by releasing the mouse button, my interfaces freezes until the browser loses and regains focus. The dragdrop event handler seems to execute just prior to the "freezing" and other than this behavior, things seem to work normall

Re: [qooxdoo-devel] Drag and drop between QxLists

2005-11-14 Thread Sebastian Werner
Chris Ricks schrieb: Hi Sebastian, Definitely. I've tried: 1. Updaing the renderer branch checkout I have on my laptop and desktop (neither show updates). 2. Checking out renderer fresh - List_3.html doesn't appear in the checkout. Normally the delay from developer CVS to anonymous CVS is o

Re: [qooxdoo-devel] Drag and drop between QxLists

2005-11-13 Thread Chris Ricks
Hi Sebastian, Definitely. I've tried: 1. Updaing the renderer branch checkout I have on my laptop and desktop (neither show updates). 2. Checking out renderer fresh - List_3.html doesn't appear in the checkout. Is the website regenerated from CVS? Looking on the site, it doesn't appear there

Re: [qooxdoo-devel] Drag and drop between QxLists

2005-11-13 Thread Sebastian Werner
Chris Ricks schrieb: Hi all, Does anyone have a rough idea as to how long it takes for stuff to propogate to the anonymous CVS server at Sourceforge? I've tried updating today and my setup insists that there have been no changes since last week. Are you sure you use the renderer branch? Se

Re: [qooxdoo-devel] Drag and drop between QxLists

2005-11-13 Thread Chris Ricks
Hi all, Does anyone have a rough idea as to how long it takes for stuff to propogate to the anonymous CVS server at Sourceforge? I've tried updating today and my setup insists that there have been no changes since last week. Besr regards, Chris Sebastian Werner wrote: Chris Ricks schrieb:

Re: [qooxdoo-devel] Drag and drop between QxLists

2005-11-12 Thread Sebastian Werner
Chris Ricks schrieb: Hi Sebastian, I'll definitely take a look at the diff. My work around involved determining the type of the source widget and traversing it's children to find the list item. mine is a bit simpler. just a one liner ;) I plan to significantly enhance the example you've b

Re: [qooxdoo-devel] Drag and drop between QxLists

2005-11-12 Thread Chris Ricks
Hi Sebastian, I'll definitely take a look at the diff. My work around involved determining the type of the source widget and traversing it's children to find the list item. I plan to significantly enhance the example you've been gracious enough to use - would you like an update when I'm able

Re: [qooxdoo-devel] Drag and drop between QxLists

2005-11-12 Thread Sebastian Werner
Chris Ricks schrieb: Hi Sebastian, I've disabled the drag selection mode on each list as you suggested and you're definitely right. The behaviour is much funkier. Regarding the buggy behavior you describe, is this something that my code is causing? Is there a work around that I can add? Pl

Re: [qooxdoo-devel] Drag and drop between QxLists

2005-11-12 Thread Sebastian Werner
Chris Ricks schrieb: Hi Chris, Sebastian's explanation makes sense, and the outcomes you're seeing are the same as the ones I've seen. Given that Sebastian has seen the example and you've confirmed what's going on, it shows that I'm neither mad nor inept! :-) Seriously though, the problem i

Re: [qooxdoo-devel] Drag and drop between QxLists

2005-11-12 Thread Chris Ricks
Hi Chris, Sebastian's explanation makes sense, and the outcomes you're seeing are the same as the ones I've seen. Given that Sebastian has seen the example and you've confirmed what's going on, it shows that I'm neither mad nor inept! :-) Seriously though, the problem is definitely to do wit

Re: [qooxdoo-devel] Drag and drop between QxLists

2005-11-12 Thread Sebastian Werner
Chris Banford schrieb: Sebastian Werner wrote: Chris Ricks schrieb: Hi Sebastian, I've disabled the drag selection mode on each list as you suggested and you're definitely right. The behaviour is much funkier. Regarding the buggy behavior you describe, is this something that my code is c

Re: [qooxdoo-devel] Drag and drop between QxLists

2005-11-12 Thread Chris Banford
Sebastian Werner wrote: Chris Ricks schrieb: Hi Sebastian, I've disabled the drag selection mode on each list as you suggested and you're definitely right. The behaviour is much funkier. Regarding the buggy behavior you describe, is this something that my code is causin

Re: [qooxdoo-devel] Drag and drop between QxLists

2005-11-12 Thread Sebastian Werner
Chris Ricks schrieb: Hi Sebastian, I've disabled the drag selection mode on each list as you suggested and you're definitely right. The behaviour is much funkier. Regarding the buggy behavior you describe, is this something that my code is causing? Is there a work around that I can add? No

Re: [qooxdoo-devel] Drag and drop between QxLists

2005-11-12 Thread Chris Ricks
Hi Sebastian, I've disabled the drag selection mode on each list as you suggested and you're definitely right. The behaviour is much funkier. Regarding the buggy behavior you describe, is this something that my code is causing? Is there a work around that I can add? Please feel free to put

Re: [qooxdoo-devel] Drag and drop between QxLists

2005-11-12 Thread Sebastian Werner
Chris Ricks schrieb: Hi Sebastian, Sorry - it's taken me a while to get this up with other work commitments. The URL is: http://www.itoperations.com.au/qooxdoo/ListDragAndDrop.html wow, looks great. Some small comments: 1. I think if you would disable the dragselection (setDragSelection(

Re: [qooxdoo-devel] Drag and drop between QxLists

2005-11-11 Thread Chris Ricks
Hi Sebastian, Sorry - it's taken me a while to get this up with other work commitments. The URL is: http://www.itoperations.com.au/qooxdoo/ListDragAndDrop.html I did a CVS update a few hours ago and this script links against that version of Qooxdoo. Best regards, Chris Sebastian Werner w

Re: [qooxdoo-devel] Drag and drop between QxLists

2005-11-08 Thread Sebastian Werner
Is it possible for you to create an example and put it somewhere online? Regards, Sebastian Chris Ricks schrieb: Further to the below: * Only the first item dragged across is selectable in the new list. Subsequent items are not selectable unless they're one of the non-labelled items mentio

Re: [qooxdoo-devel] Drag and drop between QxLists

2005-11-08 Thread Chris Ricks
Further to the below: * Only the first item dragged across is selectable in the new list. Subsequent items are not selectable unless they're one of the non-labelled items mentioned in my original message. * Moving the mouse pointer over the source list after initiating a drag results in mouseo

[qooxdoo-devel] Drag and drop between QxLists

2005-11-08 Thread Chris Ricks
Hi all, I've been playing with drag-and-drop between QxList objects and basically have it working. There are a few quirks I've encountered though, and any help I receive will be documented and added to the Qooxdoo site if the project's maintainers think my contribution is worthwhile (and they