The jquery-sortable tag has no wiki summary.
7
votes
1answer
360 views
What is going on with jQuery UI Sortable on a touch screen device?
I am using jQuery UI Sortable.
I am developing a mobile only website, so I looked around how to map touch events to mouse events for this to work, and ended up using some code by Oleg Slobodskoi.
...
6
votes
2answers
214 views
Changing sort behaviour for jquery sortable
I have a sortable like the 2nd example on this page:
http://jqueryui.com/demos/sortable/items.html
The sortable is a mix of targets:
Those that can be picked up and rearranged
Disabled items, ...
6
votes
2answers
2k views
jQuery UI sortable & selectable
Does anybody know how to combine jQuery UI selectable and sortable ?
This script: http://nicolas.rudas.info/jquery/selectables_sortables/ doesn't work in Chrome and it also has plugin modifications.
...
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">
...
5
votes
1answer
94 views
How can I drag an element into a dropdown list using jQuery UI sortable()?
Short version: How can I drag Link 1 into one of the dropdowns under Link 3 in this demo? http://jsfiddle.net/Gdadu/2/
EDIT: The issue has been brought up about what should happen when an item is ...
5
votes
3answers
110 views
Droppable and sortable functions on dynamically created elements not working
Stuck with this issue for the past 2 days :-( Trying to create draggable sortable list with dynamically added groups. Was able to create containers, but divs cant be dropped to these containers.. Can ...
4
votes
4answers
1k views
jquery sortable placeholder height problem
For some reason the placeholder for my sortable items is about 10px. All my sortable items have different heights. How can I change the height of each placeholder to match the item being moved?
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 ...
3
votes
1answer
279 views
JQuery UI: Cancel Sortable upon Droppable Drop
I am using JQuery 1.5.1 and JQuery UI 1.8.11.
I have added sortable for a number of items - the task here is to allow drag to sort, this all works fine.
But I also want to incorporate droppable, so ...
3
votes
2answers
272 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
523 views
jQuery Sortable: helper option
I have 2 sortable lists, let's say "modules" and "available-modules"
$(".available-modules").sortable({
// helper: 'clone'
// or
helper: function(e, elt) {
return elt.clone(true);
...
3
votes
3answers
3k 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
1answer
1k views
jQuery Draggable + Sortable - How to drag and drop between two scrollable lists
I would like to have two lists, Available Items and Selected Items, whereby Available Items are assigned to Selected Items via drag and drop. I require the Selected Items to be sortable, but not the ...
3
votes
2answers
1k views
jQuery sortable: Revert changes if update callback makes an AJAX call that fails?
I am using the jQuery sortable() feature to re-order a list of items. After an item is drug to a new location, I kick off an AJAX form post to the server to save the new order. How can I undo the sort ...
2
votes
1answer
71 views
Issue moving new item to newly added list until I do page refresh
I am using a jquery template for dynamically creating a list (columns) which has different items (they are also added dynamically) and also created a plugin which helps moving items from one list to ...
2
votes
1answer
175 views
jQuery sortable — enable sortable only on drag, not click
I have a bunch of divs which have jQuery sortable (as grid) enabled. This is all working fine, but I want to only have sortable enabled when a user drags the div - not when he clicks it. For example, ...
2
votes
1answer
331 views
How to prevent event propagation of a click on an accordion header?
I have a problem with the jquery sortable plugin. Indeed, I have items (questions) which use both accordion and sortable.
I use the update event of sortable to show extra content in each question ...
2
votes
2answers
346 views
How to Sort a DIV OnClick Jquery by value of a custom attribute?
This code works perfect for sorting a dynamically created div:
<div id='1'>a</div>
<div id='2'>b</div>
<div id='3'>c</div>
<div id='4'>d</div>
<div ...
2
votes
1answer
531 views
jQuery $(ui.draggable).remove() not working with IE
I can get IE to remove objects as long as it is not the current draggable object. This is working on Chrome and Firefox. Is there something I'm doing wrong?
<html>
<head>
<script ...
2
votes
0answers
333 views
jQuery UI sortable event problem
in my code here http://jsfiddle.net/ebSf4/ you can drag from one sortable column to the other. I am adding some animation to sortable's receive event to make the dropped element animate to the size ...
1
vote
1answer
70 views
jQuery UI sortable for giant lists and saving in database
I'm using jQuery UI's sortable list to allow the user to drag and change the sorting of a list.
I normally get back the ids of each item and the array key then update each row's sort number in the ...
1
vote
1answer
77 views
Jquery-ui. Trouble using “draggable”, “sortable”, and “tabs” together
I started out with this working drag and drop example here.
It works great however when I try to place the drop regions within tabs(Here) it seem to break. It stops working when I try to drop an ...
1
vote
2answers
124 views
jQuery sortable and array resort
I have an array of elements: markers and a table which updates it's rows to populate with the data stored within markers. markers itself houses an object marker which has a latitude and longitude ...
1
vote
0answers
55 views
Safari gives weird CSS behavior
I'm using JQuery's sortable (as grid) to be able to sort divs, the first of which is approximately three times as wide as the rest. I want to display them in just two rows, which Chrome and Firefox ...
1
vote
1answer
372 views
Asp.net ajax control toolkit html editor content disappears
I am doing a design screen for my customers and i use jquery sortable portlets.
i put the html editor each column.When u write something into the editor then drag drop the portlets the editor's ...
1
vote
0answers
102 views
JQuery UI - Sortable Persistance (e.g. cookie based)
I was reading this repeated question all over the web and in SO, but found no simple solution
How can I have a simple jQuery Sortable that persists it's sorting by a cookie?
...
1
vote
1answer
171 views
What is disableselection used for in jQuery sortable?
can someone help me understand why is this useful and when to use it?
$( "#sortable" ).disableSelection();
Thank you.
1
vote
2answers
213 views
How to detect the item has been dropped in the same sortable list
I have two connected sortable lists. My code works fine for when I drag one element from the list on the left side to the one on the right side, but can you tell me what event should I be looking for ...
1
vote
2answers
186 views
Creating inner-accordions into an empty accordion
I have a problem with inner-accordions : the destroy-recreate method to refresh an accordion after adding some panels doesn't work correctly.
When I click on the button in the second accordion it ...
1
vote
1answer
168 views
jquery ui: google api : including sortables
I have included jquery and jqueryui from google api as follows
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.5/jquery-ui.min.js"></script>
...
1
vote
2answers
417 views
JQuery table sorting; problem with dynamically added rows
I am using a jquery tablesorter plugin(http://tablesorter.com/docs/) for sorting my tables. This works for rows that created already. But when I add a row dynamically with Jquery clone() method, ...
1
vote
1answer
200 views
sortable and draggable - cancel if item is already in sortable
Having a slight spot of bother...
I have a draggable element that can be dropped into a sortable list. Ideally I would like to prevent draggable event creating a placeholder in the sortable if the ...
1
vote
1answer
269 views
JQuery - Ajax saving sortables in connected lists when sortable item is moved
I have multiple JQuery sortable lists that connect with each other... They allow you to assign users to certain roles.
Basically what I want to do is when a user is dragged from one list to another, ...
1
vote
1answer
257 views
jquery sortable lists with dynamically generated list ids
For my webpage, I have a number of lists which I'm generating dynamically from the database. Each list is generated like so:
<ul id = "<%= "subgroups_for_tumourgroup_" + item.ID %>">
...
0
votes
0answers
7 views
horizontal sortable tolerance
I have a horizontal sortable list. My sortable as follows. I want my sortable divs to move as soon as one touches another. I have searched and found tolerance property but it doesn't help. Is ...
0
votes
0answers
16 views
Combining Columnizer and JQuery's Sortable
I have content:
<div>content</div>
<div>content</div>
<div>content</div>
<div>content</div>
<div>content</div>
I'm using the columnizer ...
0
votes
1answer
29 views
JQuery UI: moving list items between multiple unordered lists
I want to sort multiple and multilevel unordered lists.
An example:
<!DOCTYPE html>
<html>
<head>
<script ...
0
votes
1answer
26 views
jquery sortable, how prevent a list moved to other connected lists
i have three list that all of them are connected with jquery-ui sortable, first list is Backlog works, second is in-Progress and last is finished.
i want move an item from first list to second and ...
0
votes
0answers
75 views
jQuery Sortable - Ordered List - Bug in IE9
I'm using jQuery sortable with 2 Ordered List HTML elements.
When the page first loads, the first ol is bound with a repeater to add items to it.
Then the user has the ability to drag and drop these ...
0
votes
1answer
34 views
Enabling sorting in jQuery UI Sortable with connected lists
I have a two <ul> lists connected up with jQuery UI Sortable.
I need items to be dragged and dropped from one list to the other and have used connectWith: "ul" as demonstrated below:
...
0
votes
1answer
34 views
Jquery Sortable Objects Ajax Request Sending Wrong Objects
I have successfully implemented JQuery Sortable. I can also write it to the database using a separate call. However this only works for the first set of matching classes that are affected. The second, ...
0
votes
0answers
28 views
Duplicate item added to jQuery Droppable div
I am trying to create a report template were users can drag and drop items from the left side to create a structure on their own. Most of it is done, the only problem is with the "ConnectToSortable" ...
0
votes
0answers
32 views
Dragging items from a list to a sortable sitemap with jQuery UI
I am trying to create a sortable sitemap with items being dragged from the left side. Within the sitemap I can drag drop items to sort / create child nodes. All this works fine, but to items which are ...
0
votes
1answer
33 views
Jquery Sortable, lists with subsections
I'm trying to create a sortable list using the Jquery sortable plugin.
I want a list like this...
Section 1
Sub Section 1
Item 1
Sub Section 2
Item 2
Item 3
Item 4
Section 2
Sub Section 3
...
0
votes
1answer
39 views
Reordering Database Fields With JQuery UI Sortable
I have a database table that contains a list of items. The relevant fields are "item name" and "list_order".
I want to be able to re-order the "list_order" column in my table by triggering an ajax ...
0
votes
2answers
46 views
jquery Sortable ui save tr position
how do I preserve the position of my elements after a save to the database? Meaning, let's say I have a table inside which I have textboxes inside tds, and I rearrange the rows in my table and click ...
0
votes
0answers
44 views
Is there any way to drag a li out of a nested jquery Sortable into a connected Sortable?
I've got a small project with a requirement that items be listed hierarchically, but can be dragged into a flat list - it's for scheduling performances on a single stage, but since there are hundreds ...
0
votes
0answers
41 views
JQuery sortable perminant placeholder
Basically I have 2 ul lists, both sortable and connected to each other (using JQuery UI). However, one has items and the other is empty (until items are dragged into it).
I am using the placeholder ...
0
votes
0answers
40 views
JQuery TableSorter with comma delimiter not working
my problem is,
I have listed values like below, In Rails I used helper for delimiter ( number_with_delimiter(total.to_i, :delimiter => ','))
1,303,050
1,812,462
0
2,429
2,063,787
36,837,192
36,878
...
0
votes
1answer
158 views
Jquery UI - Sortable[Portlet] - button double click
I've problem with Jquery UI - sortable component.
Problem explanation:
click on button1 -> result "alert"
drag portlet contains button1 to another column and then click on button1 -> result "alert" ...