0
votes
2answers
15 views
Avoid element to get selected when its dropped with jQuery sortable
Hi!
I have a function which let me select a element when its clicked. It goes like this:
$('ul.grid li').click(function() {
var input = $(this).find('input.select-state:first'); …
0
votes
2answers
29 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 prev …
1
vote
2answers
45 views
Nested Sortable JQuery list doesn’t work in IE while it does in FF
Hello everybody,
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 daytim …
1
vote
3answers
1k views
Persist nested jquery sortable list
The Problem:
I have a nested list on my configuration page that looks like this:
<a id='Save'>Save<a>
<ul id='configuration-list'>
<li id='e1'>Elem A
…
0
votes
1answer
57 views
jQuery Sortable+Droppable vs Draggable special functionality
Hello - I'm trying to make a functionality that allows for a draggable list of items (left column) to be dragged onto a sortable list (right column). What is different about just d …
0
votes
0answers
30 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 …
0
votes
1answer
25 views
jQuery UI Sortable: Multi-item select
I'd like to (via a keyboard operator) select multiple items in an unordered list and drag them to another point in the same list with jQuery Sortable.
0
votes
1answer
52 views
jqueryUI droppable “drop” function firing on “over” only if i have on my draggable a “connectToSortable” option set
Hello guys hope anybody can help me with this little bug.
You can see the code on http://designvictim.com/jqueryui/index.html
Now here is my problem:
I'm trying to make somethin …
2
votes
1answer
73 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 ap …
0
votes
1answer
44 views
Jeditable not working with Jquery sortable
I was using Jeditable(with type autogrow) for editing text within a div which has similar siblings. Then I used Sortable for all the siblings and then jeditable wont cancel edit wh …
0
votes
0answers
7 views
ui sortable object
Hi
i am using the code bellow
$(#sortable").sortable({
cursor: 'move',
update: function (e, ui) {
alert(ui.position);
}
}).disableSelection();
BUT i dont get t …
3
votes
6answers
169 views
Does a sorted queue exist in .NET?
I have a need for a fairly specialised collection .NET, and I don't think that the BCL can help me, but I thought I'd throw it out there for if anyone knew of something similar.
B …
1
vote
2answers
45 views
jquery draggable to sortable
I've created a sortable list and a draggable item to add new items.
I have a remove button that I want to make visible when I add the new item from the draggable.
How do I wire t …
1
vote
3answers
506 views
jQuery UI Sortable problem on IE6
Hello there, 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. …
0
votes
0answers
30 views
jQuery + Sortable + live
I'm adding list items to a page dynamically with $.get, then appending them to the OL element. Pretty usual to this point.
But jQuery isn't aware of these new items when they get …
