Hello, I''m creating an application wich can be seen at http://158.227.7.9/serious_serv/prueba_xml_test(31-3)/interfElemen/integMenuContextFileUpl.htm The instructions for working with it are the following: with rigth-click you can click "Añadir una imagen" to load an image into the page, then you can drag and drop it in the box with "aqui van las imagenes" into it. With rigth-click and "Nueva etiqueta" you can generate a text wich can be drag and dropped into an image wich is in the box. The problem is that when I drag and drop several images into the box and then scroll it down, when I want to drag and drop texts into the images that are in the below part they are not appended to the image selected and the behaviour becomes weirdo. which can be the problem? -Note: the images loaded are stored, so please try this application with a non-copyrighted, non-personal photo, (the same photo can be loaded multiple times). Thank you. -- Daniel Herrero Dávila _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
Hello, my problem is the next: I have a div which is dropable, some images that are draggable into that div and also dropables and texts that are dragables into the images if they are into de div. The problem is that when I drag a lot of images into the div the scroll bar of the div appears, and if scroll down and them try to drag and drop a text into the images that are in the below part of the div it is dropped into a upper image. I scroll down the div and the images move but their "drop layer" doesn´t move. How can I solve this? thank you!! -- Daniel Herrero Dávila _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
Somewhere in your global scope, try setting the following value... I''m not promising this will work for your case; I''ve just had to use this on occasion to deal with these sorts of problems... Position.includeScrollOffsets = true; ________________________________ From: rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org [mailto:rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org] On Behalf Of Daniel Herrero Sent: Friday, April 07, 2006 5:20 AM To: rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org Subject: [Rails-spinoffs] problem with drag and drop Hello, my problem is the next: I have a div which is dropable, some images that are draggable into that div and also dropables and texts that are dragables into the images if they are into de div. The problem is that when I drag a lot of images into the div the scroll bar of the div appears, and if scroll down and them try to drag and drop a text into the images that are in the below part of the div it is dropped into a upper image. I scroll down the div and the images move but their "drop layer" doesn´t move. How can I solve this? thank you!! -- Daniel Herrero Dávila The information transmitted in this electronic mail is intended only for the person or entity to which it is addressed and may contain confidential, proprietary, and/or privileged material. Any review, retransmission, dissemination or other use of, or taking of any action in reliance upon, this information by persons or entities other than the intended recipient is prohibited. If you received this in error, please contact the sender and delete the material from all computers. _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
That just fixed the same problem for me - makes me wonder why this isn''t the default behaviour. Anyone know, out of curiousity? Thanks Ryan ;) Ryan Gahl in message RE: [Rails-spinoffs] problem with drag and drop (Fri, 04/07 08:25):> Somewhere in your global scope, try setting the following value... I''m not promising this will work for your case; I''ve just had to use this on occasion to deal with these sorts of problems... > > > > Position.includeScrollOffsets = true; > > > > > > > > ________________________________ > > From: rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org [mailto:rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org] On Behalf Of Daniel Herrero > Sent: Friday, April 07, 2006 5:20 AM > To: rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > Subject: [Rails-spinoffs] problem with drag and drop > > > > Hello, my problem is the next: > I have a div which is dropable, some images that are draggable into that div and also dropables and texts that are dragables into the images if they are into de div. The problem is that when I drag a lot of images into the div the scroll bar of the div appears, and if scroll down and them try to drag and drop a text into the images that are in the below part of the div it is dropped into a upper image. I scroll down the div and the images move but their "drop layer" doesn?t move. > How can I solve this? thank you!! > > -- > Daniel Herrero D?vila > > > The information transmitted in this electronic mail is intended only for the > person or entity to which it is addressed and may contain confidential, > proprietary, and/or privileged material. Any review, retransmission, > dissemination or other use of, or taking of any action in reliance upon, > this information by persons or entities other than the intended recipient > is prohibited. If you received this in error, please contact the sender and > delete the material from all computers.
On 4/21/06, Lindsey Simon <lsimon-kAMMLXQ8Af9Wk0Htik3J/w@public.gmane.org> wrote:> That just fixed the same problem for me - makes me wonder why this isn''t > the default behaviour. Anyone know, out of curiousity?Use the source, Luke. var Position = { // set to true if needed, warning: firefox performance problems // NOT neeeded for page scrolling, only if draggable contained in // scrollable elements includeScrollOffsets: false,