The drag tag has no wiki summary.
1
vote
0answers
19 views
HTML Link with .class inside javascript (drag and drop)
I am trying to make a tiny drag and drop page with javascript. The goal of this page is to hide a link behind a draggable image. Drag the image infront to then reveal the back (not draggable) image. ...
0
votes
0answers
4 views
Warn desktop user of draggable div
First of all sorry if this is not the correct place to post this question, as it is not exactly a programming issue.
Im building a site that uses the jquery iscroll4 plugin in some of the divs ...
0
votes
2answers
34 views
How to Drag a UIImageView?
Here is my situation: I have 3 UIImageViews. Two of them will act as reactors (the ones that the third one would be dragged to). The third one, like mentioned, will be draggable to one of the two ...
0
votes
1answer
15 views
HTML5 Canvas Drag and Drop with snap into position images
http://www.html5canvastutorials.com/labs/html5-canvas-animals-on-the-beach-game-with-kineticjs
I am wanting to have this for my HTML5 IOS Application. This requires the widget work offline. When I ...
0
votes
0answers
8 views
Drag to Mouse Coordinates Works in Firefox, not IE
I wrote the following script below, which works in Firefox and not IE.
You can click on the word 'Hello' and move it anywhere on the page in Firefox.
I used a fellow posters idea of swapping out ...
0
votes
0answers
6 views
Prevent object link from working when dragged
I've got a draggable image on my site, which I want to link to another page if clicked on. Trouble is, I don't want it to be 'clicked' if it is dragged, only if it is clicked and not dragged. So ...
9
votes
4answers
349 views
Java 7: How to implement drag & drop in Java?
I am currently experimenting with drag&drop using Java 7 Update 21.
My target operating systems are:
Windows 7
Ubuntu 12.04
Mac OSX 10.6 / 10.8
The requirements are:
drag files from the ...
0
votes
3answers
27 views
iOS UIButton Touch Drag Enter not working as expected?
I'm trying to create a button which will trigger an action when the user's touch is brought anywhere into the button (whether they touch down inside, or drag from outside to inside the button). ...
0
votes
0answers
17 views
handling paper.js drag events on iPhone
I made a paper.js paperscript that handles onMouseDrag() event.
When I use it with Safari on iPhone, there is a problem:
Safari's pinch/scroll gestures doesn't work inside the script
if it implements ...
2
votes
1answer
44 views
Problems to keep a three-rows layout after drag and drop
I wanted to create a row made by some li elements inside an ul, so I used jquery 1.9.1 and jquery ui. Everything worked properly, however there was something went differently from what I expected. ...
8
votes
3answers
4k views
how to keep dragged TitleWindow within Flex app boundary
I am using PopupManager in FB4 to display a custom dialog.
popwin = new TitleWindow();
popwin.addElement(myCustomDialog);
PopUpManager.addPopUp(popwin,this,false);
...
-1
votes
0answers
13 views
Drag and drop of files in ASP.NET MVC [closed]
Am looking for Drag and drop of files and outlook email in ASP.NET MVC that can support IE9 (No HTML5),Safari .
Thanks,
Basavaraj
0
votes
1answer
108 views
Drag And Drop between asp.net Listboxes
i have two asp.net list boxes. i want to move the items from one list box to anther using drag and dropping. i tried to use j Query but dint seem to work. i also changed my list box to HTML select but ...
0
votes
2answers
38 views
Update when dragged and resized Jquery
I got the jquery variables to update the height width and positions when the divs are dragged but I need them to do the same when they are resized....how can I do this? Here is my code that I'm using ...
3
votes
3answers
587 views
Overflow hidden and input text scrolling in Google Chrome
Here is my code snippet:
http://jsfiddle.net/7CuBV/6/
If i click and drag over the input text field, I get the div with overflow:hidden scrolling as it would do with overflow:auto. If I set ...
0
votes
0answers
20 views
Users should be able to drag the images and place it on image view in ios
I am creating an app in which users can design their own stage with the images present over there. I have created buttons as images, now I want some code which enables user to drag and drop the ...
0
votes
0answers
28 views
Android - Moving Object with onDragListener
So, basically, I'm making a simple pong game for fun. But, now I cannot figure something out, and it's driving me insane. Basically, I want to move the user's "paddle" up when they drag up, and down ...
0
votes
0answers
10 views
dragscroll with touch screen (not mobile)
Is there any jquery/javascript plugin for scrolling on normal touch screen (not mobile).
It is for a webapp on 19 inch touch screen
wait for suggestions
2
votes
3answers
1k views
how to make a element draggable use jquery?
<div id=b style="width: 50px; height: 50px;background:red;margin-left:300px;"></div>
<script src="jquery-1.4.2.js" type="text/javascript"></script>
thanks
0
votes
0answers
40 views
Jquery draggable multiple div collision prevention
The follow script has many divs within it. It's held within a containment div "main_content". I'd like to make it so that they don't overlap each other and I've looked in the Jquery Collision ...
0
votes
1answer
44 views
C++ how to drag bitmap around screen
Hi so I'm trying to make it so a little UFO bitmap (drawing/painting already taken care of) can be dragged around the screen. I can't seem to make the UFO position update and then redraw repeatedly ...
-1
votes
2answers
22 views
Jquery When resized box changes position [closed]
I have the following code: http://plnkr.co/edit/n1eomVHp0igUG9GqSu5r
you can drag and resize the boxes but why when I resize a box for the first does does it change the position of the other boxes? ...
0
votes
0answers
15 views
Drag and Drop IE favourite shortcuts to textarea
I am using Jquery/html5 for drag and drop functionlity.
similer functionality : http://html5demos.com/drag-anything
Unable to drag/drop IE shortcut in text aera, it is working if we use firebox ...
0
votes
1answer
23 views
Attach my countdown to dragable element
I have this script and would like the dragable area not to be active until the start button has been pressed. When the start button has been pressed, the "game" begins and one can start drag items ...
0
votes
0answers
42 views
Drag an image onto other and it transforms into another image
i am creating an android app in which i would drag an image onto other and it will transform into an other image
i have implemented the drag and drop feature here :-
package com.example.draganddrop;
...
0
votes
0answers
42 views
Dragging like Map View in customer relative layout after zoom
I have created a custom relative layout where i have implemented zoomin function on double tap, now I want to drag after zooming of layout like google map view. I searched about it but no such ...
-2
votes
0answers
139 views
Drag and Drop Game AS3 Flash - setting up next array?
I'm creating a basic Drag and Drop game for college. I have the dragging and dropping working but i'm stuck on calling the next 'level' or next array of images to come up once the user has matched all ...
1
vote
2answers
322 views
JQuery table cell selection script
I am a student, new to programming and want to learn Javascript by trying stuff. I am doing an exercise which requires me to highlight table cells on mouse drag. I got it to work but I am having ...
-2
votes
1answer
35 views
How to drag and drop url link into text box? [closed]
I'm working on a helpdesk software, when admin start compose ticket, some suggestion articles will show up like google suggestion, I want the admin be able to drag and drop the article link into ...
-1
votes
0answers
20 views
How make text drag and drop
I'm working to make a banner generator and fail to make this text drag like this example:
http://darktl.com/ucbg/
Thank you in advance!
0
votes
1answer
18 views
PHP Jquery Resize blocks hiding the DIV info
The code in the link below allows you to drag and resize little boxes. The boxes have text in them but the text isn't showing because it's being covered up by something, which I believe is the resize ...
1
vote
2answers
142 views
JavaFX Dragboard setContent interfering with setOnMouseDragged?
I would like to use drag and drop in JavaFX and have a feature where you can visually see the item being dragged. I've implemented what I thought would be a working solution, but there seems to be an ...
0
votes
1answer
22 views
jquery draggable and resizeable not working nice together
I have several DIV's that I want to make draggable and also make resizeable. Here is my code in plunker: http://plnkr.co/edit/QQzEoyTM5dubRuwTfZd5
There are a couple of issues that I'm having. the ...
0
votes
2answers
20 views
Framework required for a dynamic IVRS application generator
Can anyone tell me what framework one should use for designing an IVRS generator app that would dynamically generate IVRS using drag and drop method? I have to build this app compatible to ...
2
votes
0answers
40 views
Java Lag when dragging
My problem is more annoying than it is critical to my next steps, but hopefully the fix is simple. I have a background map made up of many square tiles which can be dragged by the user to expose ...
1
vote
0answers
79 views
jQuery UI drag drop swap elements
I cant handle with one thing - swap elements betweens two divs.
Here is my code
$(function () {
$('#container').sortable({
tolerance: "pointer"
});
$('#box1').sortable({
...
0
votes
1answer
20 views
KineticJS - How to find out which object were dragged?
is there some possibility, how to realise, which object were moved? If I had for example 5 object on canvase and I would move one object, is there any information about what changed since any time? ...
0
votes
0answers
43 views
Complex custom drag and drop in Flex for non-list components
I am currently working on the custom drag and drop functionality in Flex, I am quite a beginner in flex and AS3 and therefore I am having problems which might be trivial for more experienced ...
1
vote
1answer
30 views
Refresh items in DragSortListView
Am making a ListView with DragSortListView, so I can move the rows to reorder the list.
Well, I need to modify the behavior of the List. By default, the list can't be reordered (setDragEnabled = ...
0
votes
1answer
41 views
How to find distance traveled Tkinter ButtonPress
I can track where the user clicks and where they release but I want to track distance traveled.
from Tkinter import *
root = Tk()
class DragCursor():
def __init__(self, location):
self.label = ...
0
votes
0answers
19 views
Sorting elements by drag and drop
I want sort "li" elements by drag and drop. Dragstart (alert "a", shows up) works, but drop doesn't. I don't want to use sortable. I can't find where is mistake, thx.
HTML
<ul id="playlist" ...
-4
votes
2answers
76 views
Drag and Drop in Jquery - get the id of the div that is dragging over another div [closed]
I have a div
<div id="a"></div>
and more two
<div id="b"></div> <div id="c"></div>
I want div id "b" and "c" as dragable and when I drag div "b" or div ...
0
votes
0answers
21 views
Create draggable panel in Android?
I have a layout in an absolute layout, the layout has an 'anchor point' where I'd like it for the user to be able to drag the anchor point vertically, if the user drags the anchor point down below a ...
-1
votes
1answer
47 views
Drag and drop web application [closed]
I'll create a web application but do not really know what tools I should use.
The application is based on that users will be able to upload an image.
It should then be possible to drag & drop ...
0
votes
1answer
981 views
iphone::touchesMoved: Move UIImageView inside UIView?
This is my code:
- (void) touchesBegan: (NSSet *)touches withEvent: (UIEvent *)event {
CGPoint pt = [[touches anyObject] locationInView:self.view];
startLocation = pt;
[super touchesBegan: touches ...
5
votes
1answer
814 views
Pan/Zoom painfully slow in IE8 RaphaelJS
I have been working on getting this seat mapping chart for a while and have created a few iterations, and the problem I keep finding is when I get to IE8 the panning for this is way to slow and ...
0
votes
1answer
92 views
Drag and Drop custom titled border box in Flex 4 problems
hope that someone flex experienced will be able to give the advice on that:
So I have the little flex 4 application which has custom titled border containers, I want to be able to drag and drop them ...
0
votes
1answer
42 views
Drag an image only horizontally or vertically in android?
I want to control the dragging way of the image in android. It should be moved only in one direction. How can i control it?
0
votes
1answer
42 views
Changing cursor while dragging
Is it possible to change the cursor while dragging? I have been searching and trying to do it for a while now. I want to change the 'not-allowed' cursor which shows up while you drag an object to ...
0
votes
2answers
69 views
Why the DIV is draggable once in IE using Crossrider & JQueryUI ? & no dragstop event fired?
I'm using Crossrider, I want to add a draggable div to the page's DOM.
The following code works well on Chrome and Firefox, and the dragstop handler function is fired for both Chrome and Firefox ...


