Tagged Questions

A jQuery UI framework plugin which allows a developer to create a group of sortable blocks, which can be dragged and reordered by mouse.

learn more… | top users | synonyms

17
votes
3answers
12k views

Jquery sortable list won't serialize, why?

I'm implementing a sortable list of images with jquery in a Zend Framework application. I just can't get the .sortable('serialize') method to return more than an empty string. When I try with a few ...
12
votes
6answers
16k views

jQuery draggable:sortable

I am using the JQuery libs to implement drag and drop. How do I get at the element that is being dragged when it is dropped into sortable list? I want to get the id of the div being dragged. The ...
9
votes
4answers
2k views

jQuery sortable obtain 2 elements being swapped

I cannot find out how to obtain destination element with jQuery UI sortable. $("#pages").sortable({ opacity: 0.6, update: function(event, ui) { var first = ui.item; // ...
9
votes
6answers
7k views

jQuery Sortable and Droppable

I want to have a list that is sortable, but I also want the elements in that list to be droppable to the divs I have defined as droppable. I can't seem to find a way to do it. Any ideas?
8
votes
6answers
5k views

Preventing click event with jQuery drag and drop

I have an elements on page that are draggabe with jQuery. These elements have click event wich navigates to another page (ordinary links for example). What is the best way to prevent click from ...
7
votes
2answers
1k views

Jquery sortable, move item programatically

I am using JQuery Sortable. I have the HTML setup like so: <ul id='plan'> <li class='item'>1</li> <li class='item'>2</li> <li class='item'>3</li> ...
7
votes
3answers
1k views

Getting the position of the element in a list when it's drag/dropped (ui.sortable)

I have a sortable list like this one: http://jqueryui.com/demos/sortable Is it possible to get the start and end position of the element in the list, when it has been moved? I'm talking about their ...
7
votes
5answers
6k views

jQuery Sortable - scrolling in div with overflow:auto

I have a page using jQuery with some lists which have been made sortable. The list is inside a div which has a fixed height and overflow set to auto in the stylesheet. The scroll attribute of ...
7
votes
5answers
20k views

jQuery: What to do with the list that sortable('serialize') returns?

With jQuery I'm retrieving positions of a sortable list using 'serialize', like this: var order = $('ul').sortable('serialize'); The variable 'order' then receives the following: ...
6
votes
1answer
498 views

How to properly sort multiple accordions with jQuery

This is my first time posting so please let me know if I fail to provide enough details. I have a page that contains multiple accordions. I wanted to use multiple accordions because I wanted users ...
6
votes
4answers
914 views

Jquery ui-sortable - unable to drop tr in empty tbody

I have two connected tbody elements allowing me to drag rows between two tables. Everything works fine until all rows are removed from either table. When all rows have been dragged to the other ...
6
votes
1answer
1k views

Saving JQuery Sortable (new order) to ASP.Net MVC controller?

I've implemented JQuery sortable, and it works fine. The problem is I can't pass the list in its new order to a controller so i can save it. <script type="text/javascript"> ...
6
votes
3answers
1k views

jQuery UI Sortable, how to determine current location and new location in update event?

I have: <ul id="sortableList">   <li>item 1<li>   <li>item 2<li>   <li>item 3<li> </ul> I have wired into the update: ...
5
votes
4answers
147 views

How to imitate a sort event with animation using jQuery?

I've got a list of items, each containing a checkbox. When a checkbox is ticked I'd like that item to sort itself to the beginning of the list, preferably animating as if it were being dragged with ...
5
votes
1answer
1k views

jQuery UI Draggable/Sortable - Get reference to new item

I am using the jQuery UI Draggable/Sortable demo (http://jqueryui.com/demos/draggable/#sortable) for the basis of my project. I need to get a reference to the <li> that gets cloned into the ...
5
votes
2answers
1k views

Jquery Sortable, delete current Item by drag out

Good morning, i hope someone can help me. My Problem: The sortable event out: fires when i drag something in the list or when i sort the list. But i only want to start the function when i drag a ...
5
votes
1answer
6k views

Making a DataGrid Column Header sortable in WPF using C#

I am using C# in Visual Studio 2008 and I have install the WPF Toolkit. I created a DataGrid in testtest.xaml. The ID and Parts $ columns have the ability to sort the DataGrid by clicking on their ...
5
votes
1answer
1k views

Sorting multiple items at the same time using jQuery UI

I'm trying to setup a way to sort multiple items at the same time using jQuery UI's Sortable plugin. I have come up with a partial solution, where the checked items go with the drag, but I can't get ...
4
votes
1answer
229 views

jQuery mouseleave not firing correctly while dragging

I have a sortable list with a mouseleave event listener that is behaving incorrectly. If I move the mouse in and out of the sortable list, mouseleave fires correctly. If I first click and drag one ...
4
votes
3answers
360 views

A different kind of jquery sortable

I have elements of different sizes that are arranged somewhat acording to a grid (like in the image below) and I want to drag and drop properly those elements. Is there a plugin that would do that? ...
4
votes
1answer
2k views

jquery-ui sortable | How to get it work on iPad/touchdevices?

How do I get the jquery-ui sortable feature working on iPad and other touch platforms? http://jqueryui.com/demos/sortable/ I tried to work with event.preventDefault(); event.cancelBubble=true; ...
4
votes
1answer
2k views

Sortable + nested lists with jQuery UI 1.8.2

This question is all over SO, but no one seems to have had the same problem as I have. When I do something like this $(function(){ $('#unique-ul').sortable({items:'li'}); }); I'd expect it to ...
4
votes
3answers
274 views

Jquery Sortable Update Event can called only one time?

I'm trying to make category changes with Jquery & Php. I have no problem with it. My problem is, when the update event is called, it returning 2 results. 1 result for Dragged Parent, One result ...
4
votes
2answers
1k views

Why isn't scrolling working in my jQuery UI sortable?

I'm having problems using the sortable function of jQuery UI. The scroll doesn't seem to work. If the second list ( lists are created on the table rows in a tbody and each tbody is connect ) isn't ...
4
votes
1answer
2k views

jQuery unexpected sortable behaviour

I'm working on a project where I can generate Word documents, one of the functionalities is to define a table of contents. I want my TOC to be a sortable jQuery list for sorting the chapters. I'm ...
4
votes
3answers
1k views

Nested Sortable JQuery list doesn't work in IE while it does in FF

While I'm using this site quite often as a resource for jQuery related problems I can't seem to find an answer this time. So here is my first post. During daytime at work I'm developing an ...
4
votes
1answer
4k views

jQuery UI: sortable('toArray') returns an empty array

This has me stumped. The follow code returns ",,,,,,": <script type="text/javascript"> $(function() { $('#listB').sortable({ connectWith: '#listA', update: function(event, ui) { var ...
4
votes
1answer
662 views

Selecting multiple items with jQuery Sortable()?

I need to drag multiple items simultaneously within a jquery sortable container. In this case, it's a series of nested divs within a parent div which has the sortable() behavior applied. Any ...
4
votes
3answers
2k views

jQuery UI Sortable problem on IE6

first question here from me. We have a users customization page which gives them the possibility to relocate different modules () into three different content blocks. There is two space content, and ...
4
votes
1answer
6k views

jQuery: draggable connect to sortable. draggable item has a different DOM from sortable list

I am now able to drag an item to a sortable. But the sortable list has a different DOM. <!-- The draggable items. Has the "original" DOM in the LI tags. --> <ul class="draggable_text"> ...
4
votes
7answers
401 views

Best approach for sortable table with a lot of data

On our web application, the search results are displayed in sortable tables. The user can click on any column and sort the result. The problem is some times, the user does a broad search and gets a ...
3
votes
1answer
111 views

jquery sortable border collapse chrome safari

I'm using jQuery sortable() on a table with border-collapse: collapse. Something strange happens with the spacing between the rows in Chrome and Safari. It seems ok in IE, FF, & Opera. Here is ...
3
votes
2answers
179 views

Jquery - sort DIV's by innerHTML of children

I've got html that looks something like this: <div id="sortThis"> <div id="1">Price:<span class="price">20</span><span class="style">blue</span></div> ...
3
votes
1answer
154 views

jQuery Draggable + Sortable - How to reject a drop into the sort?

I have a sortable list of videos and a draggable set of videos. Basically I want to make sure that the videos dragged in are not in the first 5 minutes of video. As the video lengths vary I want to ...
3
votes
1answer
767 views

jQuery sortable drag and drop - cloning and other issues

I'd like to begin with saying what I'm trying to do. I'm currently working on a menu generator (idk how to name it exactly), something like placing widgets in WordPress but for creating menu on a ...
3
votes
3answers
90 views

How to make tags randomly switch places?

I have several <li> tags under one id, such as: <div id="myID"> <li>A</li> <li>B</li> <li>C</li> </div> I would like them to ...
3
votes
2answers
366 views

jQuery UI sortable with fixed rows

I'm using a jQuery UI sortable with a table (works fine). I would like to make the header and last row fixed (non-moveable). The jQuery UI docs indicate this can be done using a selector for items, ...
3
votes
3answers
417 views

How to make css3 scaled elements draggable

I've noticed that the CSS3 scale attribute does really bad things to jquery ui, specifically to sortable. The problem is that the mouse still needs to move as much as if the elements were not scaled. ...
3
votes
4answers
1k views

jQuery Sortable without jQuery UI

I am in need of "Sortable Drag & Drop" functionality and I'm using jQuery. I can't really use jQuery UI, because for this project it would be an overhead (I'd need to add many KB of JS and CSS ...
3
votes
2answers
77 views

Can you explain this odd behavior with dragging items into nested sortables?

I have the following setup: A sortable list where one of the <li> has a table with lists in each cell. All of the lists are sortable with each other. Draggable items that can be added to any ...
3
votes
3answers
2k views

jQuery UI sortable table handle

I'm having some difficults with sortable option handle. When I use: $("table tr").sortable().disableSelection(); There is no problem. If I add the handle option then the sortable stops working: ...
3
votes
2answers
1k views

jQuery UI sortable and live() click problem — need to click twice after sorting for click to register

I have a table I'm using jQuery UI's "sortable" on. In the table, I have rows consisting of a "drag handle" to grab and reorder the table, and cells with clickable items, like this: <table ...
3
votes
1answer
736 views

JQuery sortable, dragging between two lists, cancelling the drop: How to animate?

I have two HTML lists, and am using JQuery sortable to drag between them. This works perfectly. The receive event is raised upon dropping a dragged list item into the second list. In this event ...
3
votes
1answer
428 views

set last row of a datagridview not sortable (always on bottom)

I have a sortable DatagridView with a summary last row containing sum of some columns, i want to keep this summary row always as the last line(bottom) of datagridView. At the moment, when i sort a ...
3
votes
4answers
721 views

jquery Sortable connectWith calls the update method twice

In the code below the update function gets called twice when an item is moved from list sortable1 to sortable2 .. though i need to call that function only once. $("#sortable1 tbody, #sortable2 ...
3
votes
2answers
811 views

jquery sortable plugin with “sliding effect”?

jQueryUI has got a nice plugin, Sortable: http://jqueryui.com/demos/sortable/ I'm very pleased with that plugin but I'm only missing one thing. And that is instead of let the elements that changes ...
3
votes
1answer
476 views

Can jQuery UI's Sortable handle complex selectors for the items option?

I have list items in an unordered list that when double clicked, can be edited in place via a wysiwyg editor. $('ul.mtm_section').sortable({ disabled: true, distance: 10, items: '> ...
3
votes
3answers
1k views

Forcing an item to remain in place in a jQuery UI Sortable list

I've set up a jQuery sortable list but I need to be able to keep some items in the sortable 'fixed' in place and for the other items to sort around them. I thought that there would be built in methods ...
3
votes
1answer
164 views

jQuery sortable for separated sections

I have main categories and sub categories. I want to be able to sort subcategories when the display is like: Main Cat1 sub cat11 [handle] sub cat12 [<>] sub cat13 ...
3
votes
1answer
325 views

Best option for sortable/draggable layout selector?

For my current project, I need to make a layout selector where certain elements can be dragged and repositioned by the user, similar to this mockup: So far, I have been able to replicate something ...

1 2 3 4 5 11