Tagged Questions
0
votes
1answer
90 views
Reorder image gallery
I have an unordered list of image thumbnails. Each thumbnail links to the full size image.
I use the YUI3 library to allow drag & drop reordering of the thumbnail images (just the out-of-the-box ...
4
votes
2answers
103 views
Reorder HTML elements by class, not by id
I looked everywhere and could not find the answer so I hope this is somewhat unique. Every example I have seen of reordering elements uses ID's to swap or insert. However, I am getting a feed onto ...
0
votes
2answers
159 views
JQuery order div by value and skip if value is zero
I've done my ordering in my code but instead of reloading the whole json result, I want a client side reorder for my divs.
My C# code for ordering is:
.OrderBy(p=> p.order == 0? int.MaxValue : ...
0
votes
1answer
528 views
How to reorder a ul li list by clicking on an link or button?
I need to move some selected items from a list by clicking on a link or button.
Giving 4 options to the user:
Put all selected items once backward or forward, or instead put all to the top of the ...
0
votes
1answer
153 views
JQuery Table Cell ordering Plugin
I to allow user to reorder images that are in a table cells.
I found TableDnD but this only can reorder table rows and not cells (I only need to swap td content using drag & drop & don't want ...
6
votes
2answers
8k views
moving select options up and down via jquery
so I got this code working for Firefox and Chrome...what it does is it allows you to reorder the options within an HTML select form...but then when I tested the code via IE8, it's kind of patchy...it ...
2
votes
2answers
1k views
reorder items algorithm
I've got an html table thus:
up | dn
[ ] Item 1
[x] Item 2
[ ] Item 3
[ ] Item 4
[x] Item 5
[ ] Item 6
[ ] Item 7
If 2 & 5 are checked and I click up, the result is:
up | dn
[x] Item 2
...