4
votes
6answers
2k views
jQuery Sortable - scrolling in div with overflow:auto
Hi,
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 …
2
votes
2answers
357 views
jquery UI Sortable with table and tr width
Hi i am using jquery ui sortable to make my table grid sortable.The code seems to work fine but because i am not using width to TDs when drag the TR srink the content.
For examle IF my table row is …
2
votes
2answers
492 views
Jquery UI in IE8: suspending sort behavior while resizing an element that is sortable and resizable
I have a list of elements which I would like to make sortable and resizable using Jquery UI. Combining them works great in Chrome and Firefox. But in IE8 (both in normal and compatibility view), …
1
vote
2answers
181 views
jQuery UI: Nested sortable errors.
Hi All,
Thanks for reading.
Two issues:
I am creating a task-list type of system, which will use nested sortable lists.
Here's some very basic demo code:
<script>
$(function(){
…
1
vote
1answer
79 views
How to turn off sorting with jQueryUI sortable?
I have implemented jQueryUI sortable list and it works really nice. At some point in time, I wish to disable further sorting and keep item order as it is, without user being able to change it.
It …
1
vote
1answer
98 views
How can I get JQueryUI sortable to ‘revert’ faster?
JQuery's sortable has an option to revert the item that the user drags back in line with the rest, but the animation is a little slow.
Is there a simple way to specify 'fast' like some of the other …
0
votes
0answers
22 views
Rails // jquery ui.sortable // jq not sending request
There might just be an update i'm not aware of according to this post, but i have some trouble with the sortable; nothing get sent (neither firebug nor my controller get anything) - any browsers.
On …
0
votes
1answer
25 views
[jQuery UI] Connected sortable lists
Hi, I'm working with connected sortable lists and need the ability to add an extra list, but it just doesn't work.
I have an XHTML like this:
<div id="content">
<div class="line">
…
0
votes
1answer
43 views
Jquery Sortables - Sub Menus
I have a challenge with CSS and Jquery Sortables.
I am extremely new to Jquery so I have no idea how to achieve this.
Here is the goal:
To have a horizontal plane of Parent Menus.
Parent menus can …
0
votes
1answer
33 views
jQuery UI sortable/draggable - with palette (copy/remove instead of moving)
I've got a simple setup using jQuery UI's default sortable/draggable functionality.
I now need to add a 'palette' which will will be a list of all items in all lists (and some that may not be in any …
0
votes
1answer
48 views
jQuery not appending a drag-and-drop to connected folders
Going for a sort-of Windows explorer-style drag-and-drop folder behavior here. The "// make chapter items droppable" block isn't working - specifically, it's not appending the draggable to the dragged …
0
votes
0answers
55 views
jQuery Sortable List - scroll bar jumps up when sorting
Hello
I created a demo: http://pastebin.me/584b9a86d715c9ba85b7bebf0375e237
When the scroll bar is at the bottom and you drag items to sort them, it causes the scroll bar to jump up. It seems to do …
0
votes
2answers
46 views
jQuery - two columns - sortable and cookie?
Hello everybody!
On my page I have two kind of columns with several conainers in it.
Now I want to be able to sort these containers in these two columns.
This was not really a problem.
I can sort my …
0
votes
0answers
48 views
Safari/Webkit jQuery UI sortable loses behavior when showing/hiding container elements
$(".someUl").sortable({ ... }).disableSelection();
$(".containerOfSomeUl").hide();
$(".someButton").click(function() {
$(".containerOfSomeUl").show();
});
The above works fine in Firefox and …
0
votes
1answer
184 views
jQuery ui sortable loading indicator
Hello. I'm using this code:
$(document).ready(function() {
$("#test-list").sortable({
handle : '.handle',
update : function () {
var order = …
