The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
46 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), ...
0
votes
0answers
47 views

re-order list elements after few of them are removed

I'm using a wordpress plugin which is based on jquery isotope. I've integrated a live search script which removes items which are not relevant to the search input. So, basically when I click a ...
0
votes
1answer
58 views

Listview with checkbox: column order changes checkbox position

In C# Windows Forms I have a listview with the CheckBoxes property set to true and the AllowColumnReorder property set to true. The checkbox for each item is shown at the very left-hand side of the ...
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 ...
1
vote
2answers
51 views

How to reorder activerecord array based on array of ids

I have an existing activerecord array, gotten by the following: @posts = Post.where(["created_at > ?", n_days.days.ago]) And I would like to order this array based on a value that needs to be ...
0
votes
1answer
50 views

XAML/C#: What event fires after reordering a gridview?

I am making my first Windows Store app in Visual Studios 2012. I have a gridview control that I have enabled to be reordered. I have code that I need to run when the list is reordered. I have tried ...
2
votes
2answers
150 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 ...
0
votes
1answer
38 views

Generate original array from reordered one?

Assuming that M1 is an array of disordered 1byte alphabets (see figure). What is the best way to transform M1 to M2, an array of somewhat ordered alphabets which allows us to generate back the ...
1
vote
1answer
157 views

Reordering rotated uitableviewcell

I've got a uitableview that I've rotated 180 degrees but whose cells I've rotated back -180 degrees. The effect is that I am loading my data from the bottom of the table view. This works great. The ...
1
vote
1answer
37 views

How can I order a matrix by another matrix, keeping original numeric value (Using R)

I have searched google a lot, and there were many useful R code solutions in Stackoverflow. I have two matrices, they are index matrix and real return matrix. Their dimensions are same (about 500 by ...
0
votes
1answer
1k views

Weird view, in UITableViewCell at editing mode, while reorder cells

I am in editing mode. The dark grey is an imageView, that it seems being pushed by the reorder icons, and you can see the UIview in the background (light grey). I do not like this to happen. What ...
-8
votes
3answers
69 views

R reorder one column in three columns [closed]

I'd appreciate help with reordering a dataframe in R. One of the columns is like this a b c d e f g h i j k l and I would like to make it a b c d e f g h i j k l How can I do this in R or ...
0
votes
1answer
40 views

ggplot: change the order of stacked bars based on the a name within the bar

ggplot(data,aes(x=ab,y=Freq/total,fill=Result))+ geom_bar(stat="identity")+ theme(strip.text.x = element_text(size=8, angle=0), strip.background = element_rect(colour="black", ...
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)? ...
3
votes
2answers
527 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 ...
0
votes
0answers
77 views

Magento programmatically reorder an order

I need to reorder a canceled order, I'm doing this: $this->_getSession()->clear(); $order->setReordered(true); $reorder = $this->_getOrderCreateModel()->initFromOrder($order); ...
2
votes
0answers
165 views

UITableView reordering with click anywhere in the cell

Does anyone know of a way to do this? Two Attempts: Try to expand the UITableViewCellReorderingControl Use the gesture / touch event of the cell(?) and try to call it from my own control? best ...
1
vote
5answers
10k views

PHP function to reorder an array

Here is a sample array of all external JS files from paypal.com: Array ( [src] => Array ( [1] => https://www.paypalobjects.com/WEBSCR-590-20090814-1/js/lib/min/global.js ...
19
votes
4answers
456 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 ...
-2
votes
1answer
48 views

How to reorder TabBar's Tabs programmatically?

Is there a way to reorder tabs of a TabBar programmatically on xCode? Thank you a lot, Matteo!
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̶:̶ ̶ ...
1
vote
2answers
2k views

UITableView reorder like Clear app

How to start moving after the long tap detect? long tap detect with uilongpressgesturerecognizer. My code: `- (void)viewWillAppear:(BOOL)animated{ [super viewWillAppear:animated]; flMoveRow = ...
1
vote
3answers
839 views

Using long press gesture to reorder cells in tableview?

I want to be able to reorder tableview cells using a longPress gesture (not with the standard reorder controls). After the longPress is recognized I want the tableView to essentially enter 'edit mode' ...
1
vote
0answers
89 views

R difference between order and reorder

I am trying to order a data frame by two columns, I can do this easily with order and I can see it works by printing it. However, when I try using ggplot it seems to ignore the ordering. When I use ...
1
vote
1answer
102 views

JAVA: Thumbnail View with reorder using DND

I have an application of thumbnail viewer that requires displaying thumbnails with the feature to reorder them (using DnD). The thumbnail is a custom component (JLayeredPane). Here is the wire frame ...
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 ...
-1
votes
2answers
69 views

mysql order datetime data after inserting old data

I have a mysql table storing data collected every 10 seconds. I recently inserted some old data and now when I query the data using SELECT packetDate, data WHERE packetDate BETWEEN 2013-01-11 AND ...
0
votes
0answers
155 views

How to flip axis of a horizontal barplot in ggplot2

I am creating a horizontal barplot using a factor variable (and an associated numerical variable) in ggplot. When plotted vertically, I was able to reorder the factor variable so that the plot ...
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 ...
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 ...
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 { ...
0
votes
0answers
26 views

Django error re-ordering the fields

I'm working on my second app at https://docs.djangoproject.com/en/dev/intro/tutorial02/ .I'm trying to re-order the field from Date published on top and bottom is question but it's backward. My ...
0
votes
0answers
35 views

Reordering if statements using a while or for loop (Python)

Is there a way to reorder the execution of if statements using a for or while loop such that I could perform said statements in every permutation of their ordering? I want to maximize the result of a ...
0
votes
2answers
59 views

UITableView insertion control should not be reorderable

I have a UITableView where I want to be able to insert rows via the Insertion Control (green plus icon). (I originally had this working with the Add control on the navigation bar, but with 'back', ...
0
votes
1answer
83 views

Post reordering in wordpress theme

I`m New to wordpress.In my page the post is displayed using calling the template.But now I want reorder some posts in this page.Following is my code ,which is used to display the post.How can I edit ...
-2
votes
1answer
47 views

shifting pag order in a multipage PDF [closed]

I have a 1000 page PDF file. I need to move its last two pages at 3rd and 4th position. I'm using pdftk but I cannot move them in desired manner. How can I do it?
1
vote
0answers
105 views

Reorder an order from a Magento custom module

I have created one module in Magento which placed order programatically. Now I need to reorder this same order in the module's indexcontroller. I have created one action method for it called ...
0
votes
1answer
100 views

DataGridView - reordering columns through control trigger reorder columns in bound source

I'm using VB.Net with VS 2012. I have a DGV that's bound to a datatable within a dataset. The DGV can be updated by the user, which updates the datatable bound to the DGV. This all works fine, my ...
0
votes
1answer
85 views

How to reorder subitems of a listviewitem?

so i've written a code that reorders the columns of a listview ( actually just -=1 and +=1's the display index of the selected listview column. But when i move the columns the subitems stay . they ...
0
votes
1answer
117 views

How do I reorder tabs in visual basic? When I hide then show a tab it appears last rather than first

How do I reorder tabs in visual basic? When I hide then show a tab it appears last rather than first. Code: Dim tab As TabPage Dim checktab As Integer = 0 Private Sub HideTabPage(tabPage As TabPage) ...
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 ...
0
votes
1answer
77 views

Droid: How to reorder a linearlayouts contents programmatically?

I have a scrollview with a list of buttons. I want to have the instructions at the beginning of this list when the app is first used, but then move the instructions to the end off screen after the ...
0
votes
2answers
146 views

reorder list elements with mouse jquery

I have floating list elements and I want to make them draggable with mouse and move them to reorder. The structure is as follows: <ul> <li>item1</li> ...
3
votes
3answers
314 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 ...
0
votes
1answer
63 views

How do i make custom reordering for products in collection in shopify

How do i make custom reorder for products in collection in shopify. i mean for exapmle i have 'test' collection and i want to reorder products in 'test' collection by using product tag i mean i put ...
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 ...
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 ...
0
votes
0answers
62 views

Best method to make controls movable in a stackpanel

I have a stackpanel that contains 5 1x3 grids. Each grid is the exact same Textbox,combo box and empty cell. I am wanting to use the empty cell to grab and drag that entire grid (up or down) to ...
0
votes
1answer
102 views

User clicks cell in a UITableView to reorder, how can I know the index and location of the cell being dragged?

Using the provided reorderControls, the user can tap and hold to drag a cell around to reorder it. How can I know which cell they've selected to drag and the position of that current cell (ie when ...
2
votes
2answers
155 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 ...

1 2 3 4