Tagged Questions
The sortables tag has no wiki summary.
4
votes
2answers
4k views
jQuery sortables
I'm using the sortable function in jquery to sequence a faq list. Needless to say, i'm new to this concept. Anybody have any good examples of the backend for this. I have the front working fine, ...
2
votes
2answers
68 views
How can I find the new div id of an element moved with Jquery sortable?
I want to know the new position (div id) of an element I just moved
How can I do this ?
http://jqueryui.com/demos/sortable/#empty-lists
<script>
$(function() {
...
2
votes
3answers
617 views
TinyMCE instances in jquery sortable
I'm stumped and frustrated so time to ask for help. Done a lot of googling but yet to find a solution that works for me.
What I have is a whole bunch of divs that can be sorted using Jquery ...
1
vote
2answers
86 views
jQuery sortables - connect problem
I have two examples on jsFiddle:
http://jsfiddle.net/9uhfX/1/
http://jsfiddle.net/9uhfX/2/
Example 1
In the first one I can move the list elements around, even from a child element to the root ...
1
vote
1answer
139 views
Mootools sortables serialize modifier not working
I'm using Mootools Sortables to sort a list, and i'm serializing the data and using a modifier so that the data is a bit more useful. This is my code
var order = mySortableTable.serialize(0, ...
1
vote
2answers
1k views
Adding and Removing tinyMCE instances within jQuery instances
Odd problem here.
Working with an existing system that uses TinyMCE as it's text editor.
I've created a page which contains a whole lot of movable divs using jquery sortables. Now TinyMCE ...
1
vote
2answers
248 views
jQuery UI Sortable Question
I am trying to build a sortable navigation tree using jQuery UI Sortable. I have it working great in Firefox with no prblems. In IE it works pretty well, however, there seems to be some inconsistent ...
0
votes
0answers
42 views
Dragging and sorting elements between multiple lists in Mootools 1.12
I have a problem with Sortable function of Mootools library.
Unfortunately, I'm stuck to Mootools version 1.12. In this version elements can be sorted only within one container.
And what I want is ...
0
votes
1answer
147 views
Problem with function Sortables (Mootools library)
I have a problem while using the Sortables() function (Mootools library).
this.sort=new Sortables(this.box,{
onStart: function(el){el.setStyles({'background':'#f0f0f0','opacity':1});},
...
0
votes
1answer
130 views
jQuery — Nested Sortables Plugin — Disabling sortability between parents
I've got a question that I think is simple but I've not been able to figure it out.
This is in regard to this plugin: http://mjsarfatti.com/sandbox/nestedSortable/
Essentially, I want to disable the ...
0
votes
1answer
31 views
Links are firing after jQuery sortables is stopped
My sortable list is a connected list with a bunch of links. The links should not fire when the user is sorting the list or after they let go of the mouse to stop sorting. With the following code, the ...
0
votes
1answer
681 views
JQuery UI sortables / draggable clone not working
Hi folks am using UI fro some drag drop, problem is that I cannot get the "clone" to fire.
I have 2 <ul><li></li></ul> lists and I want to drag from list 1 to list 2 OK that ...
0
votes
2answers
525 views
rails process for saving order of awesome_nested_set using jquery & nestedsortables
I have a categories model made with the fantastic awesome_nested set.
I have successfully generated the drag and drop tree and successfully generated the complete hash of this tree using SERIALIZELIST ...
0
votes
1answer
135 views
Jquery Sortables last “dragged” item
Sorry, back agin
How can I get at the "last" sortable item. I am dragging from one list 2 another but I need/want to append the "length" to the last dragged item which may not be the last item in ...
0
votes
1answer
322 views
MooTools Sortables with horizontal list having problems
I am having problems sorting list items using the Sortables class when the list items are displayed horizontally. Removing this style fixed everything:
display: inline
Created an example on ...
0
votes
3answers
445 views
Dragged div change places with destination
Maybe a bit complex to explain. I have a grid with 9 images 100 x 100 px like this (each number symbolize a picture):
1 2 3
4 5 6
7 8 9
What I want is that the user can drag and drop e.g. 9 over 1 ...