reorder

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 move items up or down. The other way is the drag-and-drop. But are there any other ways for a user interface for list reordering? ...

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 [x] Item 5 [ ] Item 1 [ ] Item 3 [ ] Item 4 [ ] Item 6 [ ] Item 7 If I click dn, the result is: up | dn [ ] Item 1 [ ] Item 3 [ ] ...

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 multiple sections. Each section is homogeneous, but the table overall is heterogeneous. So you might want to allow re-ordering of rows within a s...

Reorder cells - Stop working

Hi, Suddenly, in editing mode i can't move the cells. Before i could. I didn't change anything. thx ...

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

Hi, iphone problem. http://errorimages.s3.amazonaws.com/weird_cell.png 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 do you think? ...

how I can reorder the frames of a avi video?

It is possible? which library allows me to make this? It's possible to manage a video stream as a vector of pointer to frames data structure? and then construct a new stream reordered? Thanks ...

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 [2] => https://www.paypalobjects.com/WEBSCR-590-20090814-1/js/tns/mid.js [8] => https://www.paypalobjects.com/WEBSCR-590...

How to reorder section in UITableView by dragging similar to row?

Is there any way to reorder section in UITAbleView by dragging similar to row? Is there any trick to do so? ...

How to reorder WPF Toolkit datagrid colums programmatically?

Hi! My application uses the WPF DataGrid control with custom columns. Although the property Columns is an ObservableCollection<>, the invocation of the method Move does not effect the order of the columns in any way. Can I somehow reorder the columns of a WPF Toolkit DataGrid programmatically? Best Regards Oliver Hanappi ...

Reordering and Interleaving of Code

Are reordering and interleaving interchangeable terms when it comes to code compilation, optimization and execution? ...

How to save the order in the rearranged uitable view ?

Hi all, I have come across this situation that after user has tapped on edit and the table turns into editing mode then user moves one of the rows. So my question is :currently the source array comes from web service so after moving the rows where to store the rearrangement i.e. rank that the user has given so next time the user come...

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 like to reorder alphabetically using the "name" column and reset the id (autoincrement) with this new order to end up with the following | i...

reorder row in uiitableview

In my application, i want the users to reorder the contents of the differnt rows as well as to delete the rows they wish to. How to implement that ...

How do I reorder my input field by changing the attribute?

Hello, How do I reorder my inputs when my function is called? ie: When the a2 delete button is clicked now I have a1, a3, and a4 I want to reorder this so that it is a1, a2 (was a3), and a3(was a4). I know how to do this manually, but how do I write it dynamically? Script: $(function(){ $('.deleteMe').click(functio...

iPhone dynamic uiview reording

This is similar to a prior question, but it was not properly answered. On the iPhone, if you touch and hold your finger on an icon, it starts vibrating, then you can drag the icon around while the other icons move aside and rearrange dynamically. Ignoring the vibration effect, how can I implement the dragging and the real-time dynamic r...

UITableViewCells reorder when not visible on screen

I have a problem and lots of difficulty finding a solution, even if I would assume lots of people should have had similar issues. Hopefully someone can help me. I've created a Settings screen for my application using a UITableView. A NSArray is used to configure the controls I intend to display. The array looks like this: [self setCont...

Reorder LINQ result (take 1 row and move it to top) when a condition match

I have a LINQ statement that generate an anonymous type, for example: BookID, AuthorID, [Authors]* Authors return a IEnumerable which also contains many authors, it has 2 columns: AuthorID and AuthorName For example: 1 | 32 | 12, Author 1 20, Author 3 32, Author 19 How can I re-order the Authors object so that [32, Auth...

jQuery drag & drop and drag again...

Hi there, I'm working on a drag & drop page where you can drag elements from a list into various droppable containers. This works perfectly. What I am now trying to achieve is then have the ability to drag these from one container to another (or re-order them inside a container). But I cannot seem to do this. The list looks like a succ...

Java: JTable reordering rows and refresh

Hi, I have a JTable (extended) and an implementation of TableModel, in which I have the methods ... moveEntryUp(int rowIdx) moveEntryDown(int rowIdx) ... within the table model implementation. I have verified that these work properly. However, I am having problems in getting the changes made in the table model to propagate to the ...

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 without any of my code in the Stack Trace. Here is a quick video of the problem. Here is the relevant code: - (BOOL)tableView:(UITableView ...