Questions tagged [redips.drag]

REDIPS.drag is a JavaScript drag and drop library focused on dragging table content and table rows.

http://www.redips.net/javascript/redips-drag-documentation/

14 questions
1
vote
0 answers

Drag and Drop not working on table data with horizontal scroll

I have a simple table with a drag and drop feature. It works fine when there is no horizontal scroll but with a horizontal scroll it is not working properly. Image With Horizontal scroll and Image Without Horizontal Issue I want the same behavior…
1
vote
2 answers

Redips - how to get object before event.deleted handler

This is my code: REDIPS.drag.event.deleted = function(){ //TODO } This is fired when an object is dropped in the 'trash' cell. I am trying to get the object id before it gets deleted, because I alse want to delete it in the database. How…
Ken Vernaillen
  • 859
  • 1
  • 7
  • 37
1
vote
1 answer

redips - REDIPS.drag.enableDrag('init') gives error "'Cannot read property 'nestedGroup' of undefined"

when I try to reinitialize my redips div elements in my table I do this: REDIPS.drag.enableDrag('init'); Redips fails on the following source code: tableTop = function (obj) { var e, // element i, // loop variable tmp,…
Ken Vernaillen
  • 859
  • 1
  • 7
  • 37
1
vote
2 answers

Does the redips drag drop library support mobile?

I'm developing a hybrid application in Worklight. I would like to have drag and drop features like the redips drag and drop library. http://www.redips.net/javascript/drag-and-drop-table-content/ My question is: Will these features work with the…
Ken Vernaillen
  • 859
  • 1
  • 7
  • 37
1
vote
2 answers

JS not applied for dynamically generated HTML

I m using www.redips.net/ for drag/drop of objects its same as jquery but problem is that if I put everything as Static HTML then it working fine.If I generate dynamically HTML (which is must) then one of js library redips-drag-min fails to apply &…
Vishal Patwardhan
  • 317
  • 1
  • 4
  • 15
1
vote
0 answers

Can I have two tables, each with a different REDIPIS.drag drop_option value?

I’m using the excellent REDIPS.drag library - but I have multiple tables, and I need one of them to have a drop_option of single, and the other to have a drop_option of multiple. Can this be achieved? (I’m using version 4.x - not upgraded to the…
Dave Harding
  • 481
  • 1
  • 4
  • 19
0
votes
1 answer

how to manage td data height in multiple table cell Redips (REDIPS DRAG AND DROP LIBRARY)

Hope you are doing fine there i discovered your drag and drop library which is so amazing and helpful but O was stuck in minor issue can you please help me out. Here is issue: When I have large item in table data (td) so it acquire space vertically…
0
votes
2 answers

Extract field from JSON file

I have a JSON file that I want to extract a field from. { "player": [ { "Position": "TEST", "Name": "TEST", "Squad_No": "TEST", "Club": "TEST", "Age": "TEST" }, { "Position": "", …
codtetsam
  • 15
  • 5
0
votes
1 answer

droppedBefore event doesn't work as expected

Using REDIPS awesome drag and drop library I've been trying to work out why the droppedBefore event doesn't fire. I've cut down bare bones example and uploaded the files here for an easy repro: http://tempsend.com/8B0DF444D3 and here is a live…
Jeremy Thompson
  • 61,933
  • 36
  • 195
  • 321
0
votes
2 answers

Working with drag-drop REDIPS

I'm working with a library called REDIPS that lets you create a drag-drop effect customizable and simple.... I'm trying to create a function that causes the element that is being moved is cloned more than once and is positioned to the left side of…
MarceloBoni
  • 241
  • 1
  • 7
  • 16
0
votes
1 answer

redips.drag get row id when row is dropped and send to server

I am building a django site and have implemented the redips.drag library in one of my pages to allow dragging of table rows. I want a very simple functionality in my code- add a listener, so when the row is dropped, it send the row data to the…
yuvi
  • 18,155
  • 8
  • 56
  • 93
0
votes
2 answers

Drag and Drop Library. Drag Start Event

I am making a chess game in which I have to put a handler on Drag-Start event. I am currently using Redips Library for drag-drop but it doesn't seem to have a Drag-Start event dispatcher. I have also tried JQuery UI which support drag but I need…
-1
votes
1 answer

jQuery. Drag'n'Drop rows between two tables?

I have two tables in witch I need realize Drag&Drop for table rows. For that I used REDIPs.drag library, like in example15 in demos. Here the simplified mirror code from my project:
AlexLL
  • 165
  • 1
  • 13
-1
votes
2 answers

Get the id of the HTML table column

How can I get the Column id of a specific row cell index? HTML table design : My Table This code handles and Ajax request when the cell content of the table is dropped into another cell: redipsInit = function () { // reference to the REDIPS.drag…
Nahum Fabian
  • 180
  • 1
  • 2
  • 15