The reorder tag has no wiki summary.
35
votes
3answers
10k views
How to limit UITableView row reordering to a section
I was hitting my head over this one, and google was turning up nothing.
I eventually worked it out and thought I'd write it up here for the sake of the next person.
You have a UITableView with ...
27
votes
14answers
5k views
User interface for reordering a list items
I have a list of items as a part of a web application. The question is how user could manipulate the order of items in the list (not the list sort order). The typical way is to use arrow buttons to ...
19
votes
4answers
454 views
Instructions reordering in Java JVM
I was reading this blogpost: http://jeremymanson.blogspot.hk/2008/12/benign-data-races-in-java.html
And the author was talking about breaking the hashCode() in String in multithread environment.
By ...
9
votes
2answers
5k views
R: How can I reorder the rows of a matrix, data.frame or vector according to another one
test1 <- as.matrix(c(1, 2, 3, 4, 5))
row.names(test1) <- c("a", "d", "c", "b", "e")
test2 <- as.matrix(c(6, 7, 8, 9, 10))
row.names(test2) <- c("e", "d", "c", "b", "a")
test1
[,1]
...
8
votes
3answers
2k views
Python Pandas - Re-ordering columns in a dataframe based on column name
I have a dataframe with over 200 columns(don't ask why). The issue is as they were generated the order is
['Q1.3','Q6.1','Q1.2','Q1.1',......]
I need to re-order the columns as follows:
...
8
votes
1answer
199 views
Data frame transformation gives different results when same code is run before and after attaching (apparently) unrelated packages
I wanted to create a barplot in which the bars were ordered by height rather than alphabetically by category. This worked fine when the only package I loaded was ggplot2. However, when I loaded a few ...
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 ...
5
votes
4answers
6k views
How does one reorder columns in R?
How would one change this input (with the sequence: time, in, out, files)
Time In Out Files
1 2 3 4
2 3 4 5
To this output (with the sequence: time, out, in, files)?
...
5
votes
3answers
2k views
php array keys reorder
My array looks like this:
array(
0 => 'val',
2 => 'val',
3 => 'val',
5 => 'val',
7 => 'val'
);
how can i reorder the keys so it will go like 0, 1, 2, 3, 4 ?
5
votes
1answer
2k views
How can you manually reorder a ListView in Android?
I have a ListView in Android that needs to have the ability to be manually reordered. An example would be within Android's Music Player application, when you can change the order of tracks in a ...
5
votes
3answers
1k views
How to get notified of UITableViewCell move start and end
I have a UITableView in my iOS app that gets refreshed periodically. The user is also able to move the tableview rows at all times (the tableview is always in editing mode).
I want to stop the ...
5
votes
3answers
820 views
Order bars within each factor using ggplot2
I am creating this "barplot" with ggplot, but I would like to be able to reorrder the bars within each categories so the highest bars are on top. In short having a High to Low bars ordering withing ...
5
votes
1answer
351 views
What is the behavior of __faststorefence?
In regards to this question, I'm interested only in x86 and x86-64.
For MSVC 2005, the documentation for __faststorefence says: "Guarantees that every preceding store is globally visible before any ...
4
votes
2answers
104 views
Sort matrix (or data.frame) on amount of unique values per column
How to reorder columns of a data.frame on the total amount of unique values per column? As an example:
var1 var2 var3
1 1 1
0 2 2
1 3 3
0 4 1
1 5 2
Is there a way ...
4
votes
1answer
2k views
PHP add to beginning of array without reordering
I've tried searching for an answer to my question but I couldn't find one that did it without reordering numerical indexes.
Is there a way to add a string to the beginning of an array without ...
4
votes
1answer
81 views
reorder array starting at given position, c++
I'm new to C++ and I'm trying to do one thing that is easy in python using slice lists,
but I can't find a easy way to do that in c++.
I need to reorder a array to start at a given element like:
int ...
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 ...
4
votes
3answers
232 views
Reordering of data segments within a file
I am trying to find an algorithm in with perhaps an example in C, C++, C#, Java or really any language to help solve a reordering problem I have been facing.
The objective is to take a series of ...
3
votes
1answer
130 views
Reordering using Patterns in Mathematica
Trying to do this :
list={{{33, 105, 203, 295}, {34, 106, 204, 296}},
{{21, 135, 201, 333}, {22,136, 202, 334}}}
I would like to transform sublists so that the first one:
{{33, 105, 203, ...
3
votes
3answers
313 views
Reordering Identity primary key in sql server
Yes i am very well aware the consequences. But i just want to reorder them. Start from 1 to end.
How do I go about reordering the keys using a single query ?
It is clustered primary key index
...
3
votes
4answers
328 views
What is the process of reordering one list based on the implied reordering resulting from sorting another list called?
I'm not interested in any particular algorithm; I just want to know if doing that has a common name that I'm just not aware of.
To be specific, say I have X = [42, 0, 99] and Y = ["a", "b", "c"]. ...
3
votes
2answers
518 views
Can't drag UITableViewCell from its current position when reorder
I'm trying to make my Core data backed UITableView have reorder ability, After implement all those delegate and some technique for core data mentioned here I found strange behavior. After tap edit ...
3
votes
2answers
138 views
Reorder function arguments in Lisp
I'm interested in an operator, "swap-arg", that takes as input 1) a function f of n variables, and 2) index k, and then returns a the same function except with the first and kth input variables ...
3
votes
1answer
45 views
Reorder() not correctly reordering a factor variable in ggplot
I'm baffled as to why the boxplots are not ordering in this plot:
set.seed(200)
x <- data.frame(country=c(rep('UK', 10),
rep("USA", 10),
...
3
votes
3answers
313 views
Sort integer array by given starting integer
I have an array
int[] months = new int[4] {1, 4, 7, 10};
I would like to sort the array starting by the given value and sort the rest of the array in the original order.
Let's say I want to start ...
3
votes
1answer
609 views
Primefaces Panels inside OrderList
I'd like to implement reordering of list elements using p:orderList and p:panel components. Initially there was a POJOs in list, but problem occurs even with a list of strings.
There is my bean:
...
3
votes
2answers
5k views
How to stop UITableView moveRowAtIndexPath from leaving blank rows upon reordering
I am having an issue where in reordering my UITableViewCells, the tableView is not scrolling with the cell. Only a blank row appears and any subsequent scrolling gets an Array out of bounds error ...
3
votes
1answer
85 views
reorder / rewrap bbcodes
I'm trying to reorder the BBCodes but I failed
so
[̶b̶]̶[̶i̶]̶[̶u̶]̶f̶o̶o̶[̶/̶b̶]̶[̶/̶u̶]̶[̶/̶i̶]̶ ̶-̶ ̶w̶r̶o̶n̶g̶ ̶o̶r̶d̶e̶r̶ ̶ ̶
I̶ ̶w̶a̶n̶t̶ ̶i̶t̶ ̶t̶o̶ ̶b̶e̶:̶ ̶
...
3
votes
1answer
154 views
django-mptt: .move_to is not working in test runner
the .move_to() method is not working for me. I've looked at other posts an people recommend saving the instance, as well as re-loading the node instances. But none of these solutions work in this test ...
2
votes
5answers
4k views
MYSQL: how to “reorder” a table
I have a table like the following,
| id | name | color |
------+--------+---------
| 1 | pear | green |
| 2 | apple | red |
| 3 | banana | yellow |
| 4 | grape | purple |
I'd ...
2
votes
1answer
2k views
How to make reorder control of UITableViewCell in left side?
I am doing a news reader app and I want that user can choose show/hide news categories (such as top news, business, technology,sports, etc) and reorder them like BBC news app in android.
See picture ...
2
votes
3answers
3k views
Using jQuery to re-order and animate list items?
So, I've got a list of items, something like:
<ul id="listHolder">
<li id="l1">List item 1</li>
<li id="l2">List item 2</li>
<li id="l3">List item ...
2
votes
2answers
3k views
Listbox drag-reorder : Index of the dropped item
I'm using a Listbox wrapped inside a ListBoxDragDropTarget (from the Silverlight toolkit).
This ListBox ca be manually reordered by the user. However the last item must always be located at the bottom ...
2
votes
2answers
155 views
How do I reorder the jobs on my Hudson dashboard?
I have a number of jobs on my Hudson dashboard. But they aren't in the order that I'd like them to be -- they are all jumbled relative to the order that they run and that I'd like to see them. They ...
2
votes
2answers
152 views
Reordering items with multiple order criteria
Scenario:
list of photos
every photo has the following properties
id
sequence_number
main_photo_bit
the first photo has the main_photo_bit set to 1 (all others are 0)
photos are ordered by ...
2
votes
2answers
64 views
Reorder or Scrambling order of elements in slice or map GAE Go
I have a code that get all question from datastore:
queQ := datastore.NewQuery("Question")
questions := make([]questionData, 0)
if keys, err := queQ.GetAll(c, &questions); err != nil {
...
2
votes
2answers
148 views
reorder columns based on values in a particular row.
I have the following data in a dataframe:
aa bb cc
1 3 4 5
2 5 4 3
3 7 8 6
..
100 33 63 55
I need to reorder the columns based on the values in the last row. The result of this transformation ...
2
votes
3answers
1k views
Reorder images using jquery
I have 4 small thumbnail images sitting side by side which when clicked upon each change a small div/panel underneath them to show different text.
When the image is clicked I want them to reorder by ...
2
votes
1answer
569 views
Drag-and-drop action bar tabs (Android 4.0 ICS)?
Is there anyway to allow users to drag-and-drop the navigation tabs in the ActionBar to reorder them on Android 4.0 ICS? I don't mean tabs in a deprecated TabHost, I mean the tabs that you add to the ...
2
votes
2answers
251 views
Reorder parent/child rows mysql using php
I need to re-order via form submission rows in a table with the following structure for a nested page layout
Columns: (table name is: sourcedocs3)
sort1 | sort2 | type
1 | 1 | parent
1 | 2 | ...
2
votes
1answer
440 views
C++ reorder std::vector elements using std::list of pointers
I ran into this problem when I tried to write out an new algorithm to reorder elements in std::vector. The basic idea is that I have std::list of pointters pointing into std::vector in such way that ...
2
votes
2answers
2k views
Reorder columns in datatable?
I'm using xsd files to validate xml files. In the xsd files, only a few of the elements are required and the rest are optional. However, it is sequential so the order of the elements as they appear in ...
2
votes
1answer
891 views
Reordering gnuplot key entries
Is there a way to change the order of the entries in the key/legend of gnuplot WITHOUT changing the plot command? (I do not mean reversing the entries)
I have multiple lines in one graph and the ...
2
votes
1answer
2k views
How to change the order of the TabItem in the wpf TabControl
I need to change the order of the TabItem.
I've tried with Remove / Insert and it doesn't works.
void UserControl_Loaded(object sender, RoutedEventArgs e) {
if(condition) {
...
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
...
2
votes
2answers
253 views
How to make listview reorder itself when item is inserted
I have a list view in which I can insert items(the items are inserted in the database). The problem is that when I insert an item, it shows at the bottom of the list. How can I make it go to the right ...
2
votes
1answer
1k views
Reordering UITableView rows programmatically with animation
I very much know how to reorder UITableView rows using "reorder Control" by the user.
By implementing UITableView delegates and datasource methods as it is provided in apple documentation.
But I ...
2
votes
2answers
9k views
How to sort images in jquery/php/mysql same as google picassa reorder interface?
I am using PHP/MYSQL.
I want to create a image gallery for sorting images. User will drag and drop images to sort and organize their images. Just like picassa do this.
I have created a page using ...
2
votes
0answers
65 views
Push apart TableViewCells while draging over them. (Similar to UITableViewCellReorderControl)
I want to have a similar functionality like we have with the UITableViewCellReorderControl from the UITableViewCell, but as far as I know I cant use the reordercontrol.
I have implemented Drag & ...
2
votes
1answer
475 views
UITableView tap and hold + drag and drop
I wanted to find out how to do the following:
I have a UItableView, which enters edit mode when the user taps and holds one of the rows
Once it enters edit mode I need the cell to remain selected ...